From 79efe04651b7c3b063ca312a60aadf060f54e55a Mon Sep 17 00:00:00 2001 From: BennyFranciscus <268274351+BennyFranciscus@users.noreply.github.com> Date: Sun, 29 Mar 2026 11:26:24 +0000 Subject: [PATCH] Update mixed to include static and async-db, add results too --- frameworks/workerman/meta.json | 3 +- requests/async-db-get.raw | 3 + scripts/benchmark.sh | 10 +- site/data/current.json | 4 +- site/data/mixed-16384.json | 1271 +-- site/data/mixed-4096.json | 1271 +-- .../shortcodes/leaderboard-composite.html | 18 +- site/layouts/shortcodes/leaderboard.html | 22 +- site/static/logs/mixed/16384/deno.log | 8492 +++++++---------- site/static/logs/mixed/16384/django.log | 630 +- site/static/logs/mixed/16384/fastapi.log | 4030 ++------ site/static/logs/mixed/16384/flask.log | 735 +- site/static/logs/mixed/16384/hono-bun.log | 960 ++ site/static/logs/mixed/16384/hono.log | 7 - site/static/logs/mixed/16384/humming-bird.log | 2 +- site/static/logs/mixed/16384/kemal.log | 1832 ++-- site/static/logs/mixed/16384/koa.log | 168 - site/static/logs/mixed/16384/rails.log | 248 +- site/static/logs/mixed/16384/sinatra.log | 250 +- site/static/logs/mixed/16384/starlette.log | 3002 +++--- site/static/logs/mixed/4096/deno.log | 431 +- site/static/logs/mixed/4096/django.log | 578 +- site/static/logs/mixed/4096/fastapi.log | 3691 ++----- site/static/logs/mixed/4096/flask.log | 543 +- site/static/logs/mixed/4096/hono-bun.log | 864 -- site/static/logs/mixed/4096/humming-bird.log | 2 +- site/static/logs/mixed/4096/kemal.log | 1594 ++-- site/static/logs/mixed/4096/quarkus-jvm.log | 2 +- site/static/logs/mixed/4096/rails.log | 242 +- site/static/logs/mixed/4096/sinatra.log | 240 +- site/static/logs/mixed/4096/starlette.log | 2792 ++---- 31 files changed, 13365 insertions(+), 20572 deletions(-) create mode 100644 requests/async-db-get.raw diff --git a/frameworks/workerman/meta.json b/frameworks/workerman/meta.json index fcdac4c2..c023efe6 100644 --- a/frameworks/workerman/meta.json +++ b/frameworks/workerman/meta.json @@ -12,7 +12,6 @@ "noisy", "json", "compression", - "limited-conn", - "mixed" + "limited-conn" ] } diff --git a/requests/async-db-get.raw b/requests/async-db-get.raw new file mode 100644 index 00000000..848a03b9 --- /dev/null +++ b/requests/async-db-get.raw @@ -0,0 +1,3 @@ +GET /async-db?min=10&max=50 HTTP/1.1 +Host: localhost:8080 + diff --git a/scripts/benchmark.sh b/scripts/benchmark.sh index e445b7c0..ed645ab4 100755 --- a/scripts/benchmark.sh +++ b/scripts/benchmark.sh @@ -523,7 +523,7 @@ for profile in "${profiles_to_run[@]}"; do -c "$CONNS" -t "$THREADS" -d "$DURATION" -p "$pipeline") elif [ "$endpoint" = "mixed" ]; then gc_args=("http://localhost:$PORT" - --raw "$REQUESTS_DIR/get.raw,$REQUESTS_DIR/get.raw,$REQUESTS_DIR/get.raw,$REQUESTS_DIR/post_cl.raw,$REQUESTS_DIR/post_cl.raw,$REQUESTS_DIR/json-get.raw,$REQUESTS_DIR/db-get.raw,$REQUESTS_DIR/upload-small.raw,$REQUESTS_DIR/json-gzip.raw,$REQUESTS_DIR/json-gzip.raw" + --raw "$REQUESTS_DIR/get.raw,$REQUESTS_DIR/get.raw,$REQUESTS_DIR/get.raw,$REQUESTS_DIR/post_cl.raw,$REQUESTS_DIR/post_cl.raw,$REQUESTS_DIR/json-get.raw,$REQUESTS_DIR/db-get.raw,$REQUESTS_DIR/upload-small.raw,$REQUESTS_DIR/json-gzip.raw,$REQUESTS_DIR/json-gzip.raw,$REQUESTS_DIR/static-reset.css.raw,$REQUESTS_DIR/static-app.js.raw,$REQUESTS_DIR/async-db-get.raw,$REQUESTS_DIR/async-db-get.raw" -c "$CONNS" -t "$THREADS" -d 15s -p "$pipeline") elif [ "$endpoint" = "async-db" ]; then gc_args=("http://localhost:$PORT/async-db?min=10&max=50" @@ -687,19 +687,23 @@ else: print(f'{bps}B/s') if [ "$USE_H2LOAD" = "false" ] && [ "$USE_OHA" = "false" ]; then tpl_line=$(echo "$best_output" | grep -oP 'Per-template-ok: \K.*' || echo "") if [ -n "$tpl_line" ] && [ "$endpoint" = "mixed" ]; then - # Mixed templates: get×3, post_cl×2, json-get×1, db-get×1, upload-small×1, json-gzip×2 + # Mixed templates: get×3, post_cl×2, json-get×1, db-get×1, upload-small×1, json-gzip×2, static×2, async-db×2 IFS=',' read -ra tpl_counts <<< "$tpl_line" t_baseline=$(( ${tpl_counts[0]:-0} + ${tpl_counts[1]:-0} + ${tpl_counts[2]:-0} + ${tpl_counts[3]:-0} + ${tpl_counts[4]:-0} )) t_json=${tpl_counts[5]:-0} t_db=${tpl_counts[6]:-0} t_upload=${tpl_counts[7]:-0} t_compression=$(( ${tpl_counts[8]:-0} + ${tpl_counts[9]:-0} )) + t_static=$(( ${tpl_counts[10]:-0} + ${tpl_counts[11]:-0} )) + t_async_db=$(( ${tpl_counts[12]:-0} + ${tpl_counts[13]:-0} )) tpl_json=", \"tpl_baseline\": $t_baseline, \"tpl_json\": $t_json, \"tpl_db\": $t_db, \"tpl_upload\": $t_upload, - \"tpl_compression\": $t_compression" + \"tpl_compression\": $t_compression, + \"tpl_static\": $t_static, + \"tpl_async_db\": $t_async_db" fi fi diff --git a/site/data/current.json b/site/data/current.json index ad3accf0..de81ae9e 100644 --- a/site/data/current.json +++ b/site/data/current.json @@ -1,5 +1,5 @@ { - "date": "2026-03-28", + "date": "2026-03-29", "cpu": "AMD Ryzen Threadripper PRO 3995WX 64-Cores", "cores": "64", "threads": "128", @@ -7,7 +7,7 @@ "os": "Ubuntu 24.04.4 LTS", "kernel": "6.17.0-19-generic", "docker": "29.3.0", - "commit": "aaf3311", + "commit": "4d7100d", "governor": "performance", "docker_runtime": "runc", "threads_per_core": "2", diff --git a/site/data/mixed-16384.json b/site/data/mixed-16384.json index 2ea9e6df..4323dc17 100644 --- a/site/data/mixed-16384.json +++ b/site/data/mixed-16384.json @@ -1,977 +1,1022 @@ [ + { + "framework": "go-fasthttp", + "language": "Go", + "rps": 54255, + "avg_latency": "229.98ms", + "p99_latency": "3.17s", + "cpu": "8764.2%", + "memory": "88.0GiB", + "connections": 16384, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "1.69GB/s", + "input_bw": "5.30GB/s", + "reconnects": 168363, + "status_2xx": 814925, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0, + "tpl_baseline": 462808, + "tpl_json": 87971, + "tpl_db": 75916, + "tpl_upload": 68199, + "tpl_compression": 120031 + }, { "framework": "actix", "language": "Rust", - "rps": 34965, - "avg_latency": "379.24ms", - "p99_latency": "4.38s", - "cpu": "8634.6%", - "memory": "14.6GiB", + "rps": 61159, + "avg_latency": "228.22ms", + "p99_latency": "2.83s", + "cpu": "7757.1%", + "memory": "9.8GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.30GB/s", - "input_bw": "3.42GB/s", - "reconnects": 110552, - "status_2xx": 525877, + "bandwidth": "1.80GB/s", + "input_bw": "4.27GB/s", + "reconnects": 193938, + "status_2xx": 919223, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 266694, - "tpl_json": 54099, - "tpl_db": 57367, - "tpl_upload": 68147, - "tpl_compression": 79570 + "tpl_baseline": 366028, + "tpl_json": 64464, + "tpl_db": 66136, + "tpl_upload": 78435, + "tpl_compression": 104890, + "tpl_static": 109059, + "tpl_async_db": 130211 }, { "framework": "aspnet-minimal", "language": "C#", - "rps": 6484, - "avg_latency": "1.03s", - "p99_latency": "5.00s", - "cpu": "8786.3%", - "memory": "2.8GiB", + "rps": 12968, + "avg_latency": "494.93ms", + "p99_latency": "3.44s", + "cpu": "8951.0%", + "memory": "1.6GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "343.98MB/s", - "input_bw": "648.81MB/s", - "reconnects": 18154, - "status_2xx": 97271, + "bandwidth": "507.47MB/s", + "input_bw": "927.07MB/s", + "reconnects": 38878, + "status_2xx": 194533, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 52217, - "tpl_json": 10046, - "tpl_db": 9520, - "tpl_upload": 8754, - "tpl_compression": 16734 + "tpl_baseline": 77200, + "tpl_json": 12899, + "tpl_db": 12659, + "tpl_upload": 13649, + "tpl_compression": 24273, + "tpl_static": 24495, + "tpl_async_db": 29358 }, { "framework": "bun", "language": "TS", - "rps": 47876, - "avg_latency": "311.06ms", - "p99_latency": "1.15s", - "cpu": "9584.7%", - "memory": "10.8GiB", + "rps": 59832, + "avg_latency": "248.51ms", + "p99_latency": "921.90ms", + "cpu": "8770.7%", + "memory": "11.3GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.79GB/s", - "input_bw": "4.68GB/s", - "reconnects": 150834, - "status_2xx": 718629, + "bandwidth": "1.68GB/s", + "input_bw": "4.18GB/s", + "reconnects": 188705, + "status_2xx": 898685, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 389264, - "tpl_json": 63015, - "tpl_db": 63318, - "tpl_upload": 78275, - "tpl_compression": 124757 + "tpl_baseline": 342559, + "tpl_json": 56893, + "tpl_db": 59274, + "tpl_upload": 72096, + "tpl_compression": 110201, + "tpl_static": 122069, + "tpl_async_db": 135593 }, { "framework": "chi", "language": "Go", - "rps": 21538, - "avg_latency": "366.34ms", - "p99_latency": "4.79s", - "cpu": "8112.2%", - "memory": "2.9GiB", + "rps": 37570, + "avg_latency": "362.28ms", + "p99_latency": "3.03s", + "cpu": "7953.1%", + "memory": "716.6MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "576.36MB/s", - "input_bw": "2.10GB/s", - "reconnects": 66477, - "status_2xx": 323079, + "bandwidth": "800.78MB/s", + "input_bw": "2.62GB/s", + "reconnects": 116930, + "status_2xx": 563550, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 211641, - "tpl_json": 47569, - "tpl_db": 16739, - "tpl_upload": 11425, - "tpl_compression": 35705 + "tpl_baseline": 274663, + "tpl_json": 48477, + "tpl_db": 27428, + "tpl_upload": 23837, + "tpl_compression": 46250, + "tpl_static": 62163, + "tpl_async_db": 80732 }, { "framework": "deno", "language": "TS", - "rps": 30880, - "avg_latency": "448.48ms", - "p99_latency": "1.32s", - "cpu": "8562.2%", - "memory": "16.9GiB", + "rps": 45062, + "avg_latency": "311.47ms", + "p99_latency": "1.01s", + "cpu": "7552.2%", + "memory": "13.5GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.52GB/s", - "input_bw": "3.02GB/s", - "reconnects": 93960, - "status_2xx": 463519, + "bandwidth": "1.66GB/s", + "input_bw": "3.15GB/s", + "reconnects": 138844, + "status_2xx": 677293, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 249444, - "tpl_json": 41788, - "tpl_db": 41856, - "tpl_upload": 50234, - "tpl_compression": 80197 + "tpl_baseline": 261178, + "tpl_json": 42962, + "tpl_db": 42965, + "tpl_upload": 52045, + "tpl_compression": 83302, + "tpl_static": 92285, + "tpl_async_db": 102556 }, { "framework": "Django", "language": "Python", - "rps": 24999, - "avg_latency": "111.09ms", - "p99_latency": "479.50ms", - "cpu": "8599.9%", - "memory": "8.5GiB", + "rps": 29630, + "avg_latency": "91.61ms", + "p99_latency": "343.60ms", + "cpu": "7804.5%", + "memory": "10.1GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.17GB/s", - "input_bw": "2.44GB/s", - "reconnects": 377675, - "status_2xx": 375991, + "bandwidth": "1.04GB/s", + "input_bw": "2.07GB/s", + "reconnects": 446725, + "status_2xx": 445648, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 188050, - "tpl_json": 37791, - "tpl_db": 37869, - "tpl_upload": 37350, - "tpl_compression": 74931 + "tpl_baseline": 159731, + "tpl_json": 32093, + "tpl_db": 32196, + "tpl_upload": 31833, + "tpl_compression": 63189, + "tpl_static": 63166, + "tpl_async_db": 63440 }, { "framework": "drogon", "language": "C++", - "rps": 20646, - "avg_latency": "637.13ms", - "p99_latency": "4.77s", - "cpu": "5700.1%", - "memory": "930.8MiB", + "rps": 28359, + "avg_latency": "481.82ms", + "p99_latency": "3.82s", + "cpu": "5322.7%", + "memory": "810.6MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "297.91MB/s", - "input_bw": "2.02GB/s", - "reconnects": 63278, - "status_2xx": 309701, + "bandwidth": "316.64MB/s", + "input_bw": "1.98GB/s", + "reconnects": 87694, + "status_2xx": 425387, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 192768, - "tpl_json": 39654, - "tpl_db": 39833, - "tpl_upload": 17747, - "tpl_compression": 19699 + "tpl_baseline": 213602, + "tpl_json": 35349, + "tpl_db": 35374, + "tpl_upload": 21880, + "tpl_compression": 18697, + "tpl_static": 36409, + "tpl_async_db": 64076 }, { "framework": "echo", "language": "Go", - "rps": 19677, - "avg_latency": "378.54ms", - "p99_latency": "4.44s", - "cpu": "7967.4%", - "memory": "2.3GiB", + "rps": 35941, + "avg_latency": "390.44ms", + "p99_latency": "2.56s", + "cpu": "8079.0%", + "memory": "1.6GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "569.09MB/s", - "input_bw": "1.92GB/s", - "reconnects": 61092, - "status_2xx": 295156, + "bandwidth": "824.02MB/s", + "input_bw": "2.51GB/s", + "reconnects": 112717, + "status_2xx": 539120, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 190032, - "tpl_json": 39304, - "tpl_db": 17366, - "tpl_upload": 12878, - "tpl_compression": 35576 + "tpl_baseline": 245946, + "tpl_json": 40578, + "tpl_db": 30877, + "tpl_upload": 29811, + "tpl_compression": 48090, + "tpl_static": 58630, + "tpl_async_db": 85188 }, { "framework": "Elysia", "language": "TS", - "rps": 46884, - "avg_latency": "317.00ms", - "p99_latency": "1.16s", - "cpu": "9617.5%", - "memory": "13.9GiB", + "rps": 58629, + "avg_latency": "254.01ms", + "p99_latency": "951.00ms", + "cpu": "8945.9%", + "memory": "14.5GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.74GB/s", - "input_bw": "4.58GB/s", - "reconnects": 147768, - "status_2xx": 703733, + "bandwidth": "1.65GB/s", + "input_bw": "4.09GB/s", + "reconnects": 184429, + "status_2xx": 880026, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 379956, - "tpl_json": 62250, - "tpl_db": 62566, - "tpl_upload": 77240, - "tpl_compression": 121721 + "tpl_baseline": 334569, + "tpl_json": 56249, + "tpl_db": 58741, + "tpl_upload": 70565, + "tpl_compression": 107743, + "tpl_static": 119677, + "tpl_async_db": 132482 }, { "framework": "Express", "language": "JS", - "rps": 33499, - "avg_latency": "97.04ms", - "p99_latency": "1.05s", - "cpu": "10451.2%", - "memory": "9.7GiB", + "rps": 40940, + "avg_latency": "50.56ms", + "p99_latency": "524.10ms", + "cpu": "9352.8%", + "memory": "9.8GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.28GB/s", - "input_bw": "3.27GB/s", - "reconnects": 110702, - "status_2xx": 502834, + "bandwidth": "1.19GB/s", + "input_bw": "2.86GB/s", + "reconnects": 133729, + "status_2xx": 614523, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 276360, - "tpl_json": 43635, - "tpl_db": 43589, - "tpl_upload": 50488, - "tpl_compression": 88762 + "tpl_baseline": 237103, + "tpl_json": 37931, + "tpl_db": 37938, + "tpl_upload": 43365, + "tpl_compression": 77281, + "tpl_static": 85947, + "tpl_async_db": 94958 }, { "framework": "FastAPI", "language": "Python", - "rps": 32134, - "avg_latency": "210.98ms", - "p99_latency": "1.69s", - "cpu": "10566.2%", - "memory": "11.5GiB", + "rps": 43239, + "avg_latency": "145.57ms", + "p99_latency": "1.29s", + "cpu": "10011.7%", + "memory": "11.4GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.26GB/s", - "input_bw": "3.14GB/s", - "reconnects": 103777, - "status_2xx": 482334, + "bandwidth": "1.28GB/s", + "input_bw": "3.02GB/s", + "reconnects": 138706, + "status_2xx": 649020, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 262922, - "tpl_json": 42349, - "tpl_db": 42571, - "tpl_upload": 52052, - "tpl_compression": 82440 + "tpl_baseline": 251331, + "tpl_json": 40752, + "tpl_db": 40782, + "tpl_upload": 50028, + "tpl_compression": 78907, + "tpl_static": 88474, + "tpl_async_db": 98746 }, { "framework": "Fastify", "language": "JS", - "rps": 36723, - "avg_latency": "92.86ms", - "p99_latency": "1.08s", - "cpu": "9991.6%", - "memory": "10.0GiB", - "connections": 16384, - "threads": 64, - "duration": "5s", - "pipeline": 1, - "bandwidth": "1.42GB/s", - "input_bw": "3.59GB/s", - "reconnects": 121627, - "status_2xx": 551222, - "status_3xx": 0, - "status_4xx": 0, - "status_5xx": 0, - "tpl_baseline": 303796, - "tpl_json": 48106, - "tpl_db": 47765, - "tpl_upload": 52860, - "tpl_compression": 98695 - }, - { - "framework": "fiber", - "language": "Go", - "rps": 29689, - "avg_latency": "221.71ms", - "p99_latency": "1.53s", - "cpu": "8810.8%", - "memory": "3.6GiB", + "rps": 48209, + "avg_latency": "38.74ms", + "p99_latency": "318.80ms", + "cpu": "9027.7%", + "memory": "9.8GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.15GB/s", - "input_bw": "2.90GB/s", - "reconnects": 96685, - "status_2xx": 445348, + "bandwidth": "1.38GB/s", + "input_bw": "3.37GB/s", + "reconnects": 156427, + "status_2xx": 723620, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 241714, - "tpl_json": 41315, - "tpl_db": 40971, - "tpl_upload": 45894, - "tpl_compression": 75454 + "tpl_baseline": 279450, + "tpl_json": 44692, + "tpl_db": 44612, + "tpl_upload": 52622, + "tpl_compression": 90103, + "tpl_static": 100520, + "tpl_async_db": 111621 }, { - "framework": "flask", + "framework": "FastPySGI-ASGI", "language": "Python", - "rps": 24735, - "avg_latency": "111.74ms", - "p99_latency": "383.80ms", - "cpu": "8864.8%", - "memory": "7.1GiB", + "rps": 39885, + "avg_latency": "377.00ms", + "p99_latency": "2.27s", + "cpu": "10525.0%", + "memory": "2.7GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.16GB/s", - "input_bw": "2.42GB/s", - "reconnects": 374026, - "status_2xx": 372022, + "bandwidth": "1.59GB/s", + "input_bw": "3.90GB/s", + "reconnects": 129127, + "status_2xx": 599084, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 186189, - "tpl_json": 37448, - "tpl_db": 37521, - "tpl_upload": 36802, - "tpl_compression": 74062 + "tpl_baseline": 325092, + "tpl_json": 52254, + "tpl_db": 52737, + "tpl_upload": 65253, + "tpl_compression": 103748 }, { - "framework": "GenHTTP", - "language": "C#", - "rps": 8907, - "avg_latency": "1.09s", - "p99_latency": "5.00s", - "cpu": "10031.1%", - "memory": "5.1GiB", + "framework": "FastPySGI-WSGI", + "language": "Python", + "rps": 40993, + "avg_latency": "365.45ms", + "p99_latency": "2.36s", + "cpu": "10677.8%", + "memory": "3.5GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "517.36MB/s", - "input_bw": "891.26MB/s", - "reconnects": 25353, - "status_2xx": 133607, + "bandwidth": "1.64GB/s", + "input_bw": "4.01GB/s", + "reconnects": 133282, + "status_2xx": 614907, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 71180, - "tpl_json": 12004, - "tpl_db": 11917, - "tpl_upload": 12317, - "tpl_compression": 26189 + "tpl_baseline": 333527, + "tpl_json": 53361, + "tpl_db": 53645, + "tpl_upload": 67402, + "tpl_compression": 106972 }, { - "framework": "gin", + "framework": "fiber", "language": "Go", - "rps": 21390, - "avg_latency": "366.77ms", - "p99_latency": "5.00s", - "cpu": "8101.2%", - "memory": "958.2MiB", + "rps": 58662, + "avg_latency": "253.28ms", + "p99_latency": "1.48s", + "cpu": "7385.7%", + "memory": "1023.0MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "545.64MB/s", - "input_bw": "2.09GB/s", - "reconnects": 65443, - "status_2xx": 321072, + "bandwidth": "1.39GB/s", + "input_bw": "4.10GB/s", + "reconnects": 184346, + "status_2xx": 880524, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 208486, - "tpl_json": 47780, - "tpl_db": 21533, - "tpl_upload": 9744, - "tpl_compression": 33529 + "tpl_baseline": 368266, + "tpl_json": 69228, + "tpl_db": 63425, + "tpl_upload": 76605, + "tpl_compression": 92917, + "tpl_static": 90071, + "tpl_async_db": 120012 }, { - "framework": "go-fasthttp", - "language": "Go", - "rps": 54255, - "avg_latency": "229.98ms", - "p99_latency": "3.17s", - "cpu": "8764.2%", - "memory": "88.0GiB", + "framework": "flask", + "language": "Python", + "rps": 31044, + "avg_latency": "93.40ms", + "p99_latency": "352.20ms", + "cpu": "7916.9%", + "memory": "8.9GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.69GB/s", - "input_bw": "5.30GB/s", - "reconnects": 168363, - "status_2xx": 814925, + "bandwidth": "1.08GB/s", + "input_bw": "2.17GB/s", + "reconnects": 468380, + "status_2xx": 467227, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 462808, - "tpl_json": 87971, - "tpl_db": 75916, - "tpl_upload": 68199, - "tpl_compression": 120031 + "tpl_baseline": 167536, + "tpl_json": 33662, + "tpl_db": 33644, + "tpl_upload": 33141, + "tpl_compression": 66268, + "tpl_static": 66330, + "tpl_async_db": 66646 }, { - "framework": "Hono (Bun)", - "language": "TS", - "rps": 44429, - "avg_latency": "334.37ms", - "p99_latency": "1.25s", - "cpu": "9639.8%", - "memory": "11.7GiB", + "framework": "GenHTTP", + "language": "C#", + "rps": 11443, + "avg_latency": "998.85ms", + "p99_latency": "5.00s", + "cpu": "9335.8%", + "memory": "5.0GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.66GB/s", - "input_bw": "4.34GB/s", - "reconnects": 139736, - "status_2xx": 666882, + "bandwidth": "481.68MB/s", + "input_bw": "818.05MB/s", + "reconnects": 31753, + "status_2xx": 171653, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 358080, - "tpl_json": 58181, - "tpl_db": 60002, - "tpl_upload": 74946, - "tpl_compression": 115673 + "tpl_baseline": 65649, + "tpl_json": 11033, + "tpl_db": 10926, + "tpl_upload": 11010, + "tpl_compression": 23317, + "tpl_static": 23813, + "tpl_async_db": 25905 }, { - "framework": "hono (node)", - "language": "JS", - "rps": 32193, - "avg_latency": "91.45ms", - "p99_latency": "1.29s", - "cpu": "10176.8%", - "memory": "10.6GiB", + "framework": "gin", + "language": "Go", + "rps": 38010, + "avg_latency": "363.06ms", + "p99_latency": "3.02s", + "cpu": "8202.3%", + "memory": "1021.0MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.24GB/s", - "input_bw": "3.15GB/s", - "reconnects": 106995, - "status_2xx": 483225, + "bandwidth": "825.44MB/s", + "input_bw": "2.65GB/s", + "reconnects": 118500, + "status_2xx": 570533, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 265675, - "tpl_json": 42252, - "tpl_db": 42118, - "tpl_upload": 47011, - "tpl_compression": 86169 + "tpl_baseline": 277523, + "tpl_json": 48454, + "tpl_db": 28555, + "tpl_upload": 25173, + "tpl_compression": 47855, + "tpl_static": 63058, + "tpl_async_db": 79915 }, { - "framework": "kemal", - "language": "Crystal", - "rps": 36991, - "avg_latency": "391.78ms", - "p99_latency": "1.03s", - "cpu": "10359.6%", - "memory": "24.6GiB", + "framework": "Hono (Bun)", + "language": "TS", + "rps": 56284, + "avg_latency": "263.54ms", + "p99_latency": "981.90ms", + "cpu": "8745.3%", + "memory": "12.3GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.50GB/s", - "input_bw": "3.61GB/s", - "reconnects": 114781, - "status_2xx": 555248, + "bandwidth": "1.58GB/s", + "input_bw": "3.93GB/s", + "reconnects": 177127, + "status_2xx": 844824, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 298485, - "tpl_json": 48263, - "tpl_db": 48964, - "tpl_upload": 61882, - "tpl_compression": 97654 + "tpl_baseline": 320242, + "tpl_json": 55048, + "tpl_db": 57758, + "tpl_upload": 68267, + "tpl_compression": 102906, + "tpl_static": 114043, + "tpl_async_db": 126560 }, { - "framework": "Koa", + "framework": "hono (node)", "language": "JS", - "rps": 39818, - "avg_latency": "78.27ms", - "p99_latency": "991.90ms", - "cpu": "9749.5%", - "memory": "10.0GiB", + "rps": 43152, + "avg_latency": "42.79ms", + "p99_latency": "460.50ms", + "cpu": "9262.3%", + "memory": "10.1GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.54GB/s", - "input_bw": "3.89GB/s", - "reconnects": 131791, - "status_2xx": 597675, + "bandwidth": "1.25GB/s", + "input_bw": "3.01GB/s", + "reconnects": 140669, + "status_2xx": 647722, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 327623, - "tpl_json": 51757, - "tpl_db": 51462, - "tpl_upload": 59617, - "tpl_compression": 107216 + "tpl_baseline": 249223, + "tpl_json": 39931, + "tpl_db": 39950, + "tpl_upload": 47441, + "tpl_compression": 81453, + "tpl_static": 90103, + "tpl_async_db": 99621 }, { - "framework": "nginx-openresty", - "language": "Lua", - "rps": 23560, - "avg_latency": "613.47ms", - "p99_latency": "2.37s", - "cpu": "11606.8%", - "memory": "7.1GiB", + "framework": "hummingbird", + "language": "Swift", + "rps": 19633, + "avg_latency": "35.50ms", + "p99_latency": "470.30ms", + "cpu": "9200.1%", + "memory": "1013.0MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "828.39MB/s", - "input_bw": "2.30GB/s", - "reconnects": 70274, - "status_2xx": 353645, + "bandwidth": "664.70MB/s", + "input_bw": "1.37GB/s", + "reconnects": 69894, + "status_2xx": 294696, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 194868, - "tpl_json": 36048, - "tpl_db": 35932, - "tpl_upload": 34730, - "tpl_compression": 52067 + "tpl_baseline": 109018, + "tpl_json": 20014, + "tpl_db": 19917, + "tpl_upload": 20175, + "tpl_compression": 40670, + "tpl_static": 41443, + "tpl_async_db": 43459 }, { - "framework": "node", - "language": "JS", - "rps": 43317, - "avg_latency": "84.65ms", - "p99_latency": "918.80ms", - "cpu": "9877.9%", - "memory": "9.1GiB", + "framework": "kemal", + "language": "Crystal", + "rps": 54605, + "avg_latency": "267.68ms", + "p99_latency": "789.90ms", + "cpu": "10170.0%", + "memory": "18.5GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.65GB/s", - "input_bw": "4.23GB/s", - "reconnects": 142870, - "status_2xx": 650198, + "bandwidth": "1.66GB/s", + "input_bw": "3.81GB/s", + "reconnects": 170548, + "status_2xx": 819077, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 357014, - "tpl_json": 56809, - "tpl_db": 56661, - "tpl_upload": 64504, - "tpl_compression": 115210 + "tpl_baseline": 314872, + "tpl_json": 50955, + "tpl_db": 51660, + "tpl_upload": 64932, + "tpl_compression": 101350, + "tpl_static": 110982, + "tpl_async_db": 124326 }, { - "framework": "phoenix", - "language": "Elixir", - "rps": 21376, - "avg_latency": "227.06ms", - "p99_latency": "5.00s", - "cpu": "5899.5%", - "memory": "4.7GiB", + "framework": "Koa", + "language": "JS", + "rps": 51767, + "avg_latency": "40.23ms", + "p99_latency": "364.60ms", + "cpu": "8964.4%", + "memory": "9.5GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "497.85MB/s", - "input_bw": "2.09GB/s", - "reconnects": 68902, - "status_2xx": 320652, + "bandwidth": "1.49GB/s", + "input_bw": "3.61GB/s", + "reconnects": 168347, + "status_2xx": 777025, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 228564, - "tpl_json": 54596, - "tpl_db": 3050, - "tpl_upload": 3696, - "tpl_compression": 30746 + "tpl_baseline": 299373, + "tpl_json": 47737, + "tpl_db": 47536, + "tpl_upload": 56948, + "tpl_compression": 97340, + "tpl_static": 108202, + "tpl_async_db": 119889 }, { - "framework": "rocket", - "language": "Rust", - "rps": 34730, - "avg_latency": "137.22ms", - "p99_latency": "1.31s", - "cpu": "5381.5%", - "memory": "331.2MiB", + "framework": "ktor", + "language": "Kotlin", + "rps": 22013, + "avg_latency": "664.19ms", + "p99_latency": "1.65s", + "cpu": "9817.2%", + "memory": "13.1GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.48GB/s", - "input_bw": "3.39GB/s", - "reconnects": 113341, - "status_2xx": 520951, + "bandwidth": "509.21MB/s", + "input_bw": "1.54GB/s", + "reconnects": 64160, + "status_2xx": 330207, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 282998, - "tpl_json": 45031, - "tpl_db": 45054, - "tpl_upload": 56773, - "tpl_compression": 91095 + "tpl_baseline": 130646, + "tpl_json": 21348, + "tpl_db": 21385, + "tpl_upload": 24759, + "tpl_compression": 38364, + "tpl_static": 42965, + "tpl_async_db": 50740 }, { - "framework": "salvo", - "language": "Rust", - "rps": 42097, - "avg_latency": "157.06ms", - "p99_latency": "1.31s", - "cpu": "8449.5%", - "memory": "2.0GiB", + "framework": "nginx-openresty", + "language": "Lua", + "rps": 31552, + "avg_latency": "466.45ms", + "p99_latency": "1.73s", + "cpu": "10776.9%", + "memory": "6.3GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.79GB/s", - "input_bw": "4.11GB/s", - "reconnects": 136975, - "status_2xx": 632300, + "bandwidth": "859.01MB/s", + "input_bw": "2.20GB/s", + "reconnects": 95050, + "status_2xx": 473605, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 343082, - "tpl_json": 55508, - "tpl_db": 55515, - "tpl_upload": 67174, - "tpl_compression": 111021 + "tpl_baseline": 198300, + "tpl_json": 32650, + "tpl_db": 32429, + "tpl_upload": 33811, + "tpl_compression": 50997, + "tpl_static": 57567, + "tpl_async_db": 67851 }, { - "framework": "Starlette", - "language": "Python", - "rps": 32617, - "avg_latency": "206.76ms", - "p99_latency": "1.72s", - "cpu": "10514.6%", + "framework": "node", + "language": "JS", + "rps": 55109, + "avg_latency": "42.03ms", + "p99_latency": "467.30ms", + "cpu": "8570.8%", "memory": "8.8GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.28GB/s", - "input_bw": "3.19GB/s", - "reconnects": 105378, - "status_2xx": 489592, + "bandwidth": "1.59GB/s", + "input_bw": "3.85GB/s", + "reconnects": 179270, + "status_2xx": 827191, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 266039, - "tpl_json": 43309, - "tpl_db": 43542, - "tpl_upload": 53060, - "tpl_compression": 83642 + "tpl_baseline": 318909, + "tpl_json": 50900, + "tpl_db": 50834, + "tpl_upload": 59710, + "tpl_compression": 104117, + "tpl_static": 115228, + "tpl_async_db": 127493 }, { - "framework": "ulfius", - "language": "C", - "rps": 6368, - "avg_latency": "67.98ms", - "p99_latency": "652.60ms", - "cpu": "1427.0%", - "memory": "657.5MiB", + "framework": "ntex-tokio", + "language": "Rust", + "rps": 57790, + "avg_latency": "244.68ms", + "p99_latency": "999.60ms", + "cpu": "8425.4%", + "memory": "3.3GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "286.10MB/s", - "input_bw": "637.20MB/s", - "reconnects": 509454, - "status_2xx": 95523, + "bandwidth": "1.81GB/s", + "input_bw": "4.03GB/s", + "reconnects": 181334, + "status_2xx": 868013, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 51614, - "tpl_json": 8419, - "tpl_db": 8736, - "tpl_upload": 10280, - "tpl_compression": 16474 + "tpl_baseline": 337784, + "tpl_json": 54372, + "tpl_db": 55020, + "tpl_upload": 64952, + "tpl_compression": 105512, + "tpl_static": 118304, + "tpl_async_db": 132069 }, { - "framework": "ultimate-express", - "language": "JS", - "rps": 46703, - "avg_latency": "318.46ms", - "p99_latency": "1.29s", - "cpu": "10178.5%", - "memory": "14.3GiB", + "framework": "phoenix", + "language": "Elixir", + "rps": 31451, + "avg_latency": "283.07ms", + "p99_latency": "5.00s", + "cpu": "5508.8%", + "memory": "4.8GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.75GB/s", - "input_bw": "4.56GB/s", - "reconnects": 147952, - "status_2xx": 701026, + "bandwidth": "425.63MB/s", + "input_bw": "2.20GB/s", + "reconnects": 97427, + "status_2xx": 471765, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 379886, - "tpl_json": 61412, - "tpl_db": 62000, - "tpl_upload": 75837, - "tpl_compression": 121891 + "tpl_baseline": 265809, + "tpl_json": 54389, + "tpl_db": 12159, + "tpl_upload": 2506, + "tpl_compression": 22704, + "tpl_static": 43888, + "tpl_async_db": 70310 }, { - "framework": "FastPySGI-ASGI", - "language": "Python", - "rps": 39885, - "avg_latency": "377.00ms", - "p99_latency": "2.27s", - "cpu": "10525.0%", - "memory": "2.7GiB", + "framework": "quarkus-jvm", + "language": "Java", + "rps": 42241, + "avg_latency": "343.50ms", + "p99_latency": "2.02s", + "cpu": "7861.4%", + "memory": "16.9GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.59GB/s", - "input_bw": "3.90GB/s", - "reconnects": 129127, - "status_2xx": 599084, + "bandwidth": "1.05GB/s", + "input_bw": "2.95GB/s", + "reconnects": 129665, + "status_2xx": 634039, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 325092, - "tpl_json": 52254, - "tpl_db": 52737, - "tpl_upload": 65253, - "tpl_compression": 103748 + "tpl_baseline": 248578, + "tpl_json": 53406, + "tpl_db": 51798, + "tpl_upload": 44893, + "tpl_compression": 62133, + "tpl_static": 88515, + "tpl_async_db": 84716 }, { - "framework": "FastPySGI-WSGI", - "language": "Python", - "rps": 40993, - "avg_latency": "365.45ms", - "p99_latency": "2.36s", - "cpu": "10677.8%", - "memory": "3.5GiB", + "framework": "Rails", + "language": "Ruby", + "rps": 29190, + "avg_latency": "486.18ms", + "p99_latency": "1.50s", + "cpu": "9376.1%", + "memory": "30.0GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.64GB/s", - "input_bw": "4.01GB/s", - "reconnects": 133282, - "status_2xx": 614907, + "bandwidth": "895.60MB/s", + "input_bw": "2.04GB/s", + "reconnects": 87504, + "status_2xx": 438736, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 333527, - "tpl_json": 53361, - "tpl_db": 53645, - "tpl_upload": 67402, - "tpl_compression": 106972 + "tpl_baseline": 171282, + "tpl_json": 27982, + "tpl_db": 27818, + "tpl_upload": 32191, + "tpl_compression": 53755, + "tpl_static": 59345, + "tpl_async_db": 66363 }, { - "framework": "hummingbird", - "language": "Swift", - "rps": 13980, - "avg_latency": "62.73ms", - "p99_latency": "906.50ms", - "cpu": "10177.0%", - "memory": "1.2GiB", + "framework": "rocket", + "language": "Rust", + "rps": 25410, + "avg_latency": "38.17ms", + "p99_latency": "484.30ms", + "cpu": "3083.0%", + "memory": "270.9MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "634.24MB/s", - "input_bw": "1.37GB/s", - "reconnects": 50115, - "status_2xx": 209711, + "bandwidth": "865.39MB/s", + "input_bw": "1.77GB/s", + "reconnects": 83619, + "status_2xx": 381153, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 110444, - "tpl_json": 19882, - "tpl_db": 19639, - "tpl_upload": 19285, - "tpl_compression": 40461 + "tpl_baseline": 146433, + "tpl_json": 23102, + "tpl_db": 22953, + "tpl_upload": 24806, + "tpl_compression": 49268, + "tpl_static": 54564, + "tpl_async_db": 60027 }, { - "framework": "ktor", - "language": "Kotlin", - "rps": 15967, - "avg_latency": "902.52ms", - "p99_latency": "2.06s", - "cpu": "9767.7%", - "memory": "13.9GiB", + "framework": "salvo", + "language": "Rust", + "rps": 57485, + "avg_latency": "26.28ms", + "p99_latency": "236.90ms", + "cpu": "7462.9%", + "memory": "1.1GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "481.87MB/s", - "input_bw": "1.56GB/s", - "reconnects": 44810, - "status_2xx": 239506, + "bandwidth": "1.86GB/s", + "input_bw": "4.01GB/s", + "reconnects": 187006, + "status_2xx": 862859, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 130943, - "tpl_json": 22033, - "tpl_db": 22095, - "tpl_upload": 25149, - "tpl_compression": 39286 + "tpl_baseline": 332612, + "tpl_json": 53175, + "tpl_db": 52748, + "tpl_upload": 61609, + "tpl_compression": 108485, + "tpl_static": 120594, + "tpl_async_db": 133636 }, { - "framework": "ntex-tokio", - "language": "Rust", - "rps": 26576, - "avg_latency": "492.84ms", - "p99_latency": "2.32s", - "cpu": "6923.3%", - "memory": "5.1GiB", + "framework": "Sinatra", + "language": "Ruby", + "rps": 32870, + "avg_latency": "415.37ms", + "p99_latency": "2.22s", + "cpu": "8676.7%", + "memory": "27.9GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "4.75GB/s", - "input_bw": "2.60GB/s", - "reconnects": 82330, - "status_2xx": 399717, + "bandwidth": "990.14MB/s", + "input_bw": "2.29GB/s", + "reconnects": 99828, + "status_2xx": 493383, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 216863, - "tpl_json": 36374, - "tpl_db": 37197, - "tpl_upload": 41225, - "tpl_compression": 68058 + "tpl_baseline": 192753, + "tpl_json": 31807, + "tpl_db": 31892, + "tpl_upload": 35878, + "tpl_compression": 59472, + "tpl_static": 66837, + "tpl_async_db": 74744 }, { - "framework": "quarkus-jvm", + "framework": "spring-jvm", "language": "Java", - "rps": 39486, - "avg_latency": "320.07ms", - "p99_latency": "2.93s", - "cpu": "8489.8%", - "memory": "20.7GiB", + "rps": 47780, + "avg_latency": "312.52ms", + "p99_latency": "441.60ms", + "cpu": "9496.9%", + "memory": "8.2GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.08GB/s", - "input_bw": "3.86GB/s", - "reconnects": 123801, - "status_2xx": 592690, + "bandwidth": "1.43GB/s", + "input_bw": "3.34GB/s", + "reconnects": 147883, + "status_2xx": 716701, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 341892, - "tpl_json": 72563, - "tpl_db": 66946, - "tpl_upload": 43572, - "tpl_compression": 67717 + "tpl_baseline": 276732, + "tpl_json": 44468, + "tpl_db": 44293, + "tpl_upload": 54554, + "tpl_compression": 87760, + "tpl_static": 98695, + "tpl_async_db": 110199 }, { - "framework": "Rails", - "language": "Ruby", - "rps": 22252, - "avg_latency": "629.81ms", - "p99_latency": "1.89s", - "cpu": "9844.7%", - "memory": "36.4GiB", + "framework": "Starlette", + "language": "Python", + "rps": 45201, + "avg_latency": "135.00ms", + "p99_latency": "1.11s", + "cpu": "9988.0%", + "memory": "8.8GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "910.16MB/s", - "input_bw": "2.17GB/s", - "reconnects": 65502, - "status_2xx": 334006, + "bandwidth": "1.33GB/s", + "input_bw": "3.16GB/s", + "reconnects": 145049, + "status_2xx": 678924, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 179210, - "tpl_json": 30239, - "tpl_db": 30375, - "tpl_upload": 36133, - "tpl_compression": 58049 + "tpl_baseline": 263828, + "tpl_json": 42392, + "tpl_db": 42449, + "tpl_upload": 51962, + "tpl_compression": 81769, + "tpl_static": 92395, + "tpl_async_db": 104129 }, { - "framework": "Sinatra", - "language": "Ruby", - "rps": 25797, - "avg_latency": "522.55ms", - "p99_latency": "2.56s", - "cpu": "9268.3%", - "memory": "31.4GiB", + "framework": "ulfius", + "language": "C", + "rps": 8074, + "avg_latency": "65.41ms", + "p99_latency": "511.00ms", + "cpu": "1238.9%", + "memory": "513.0MiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.02GB/s", - "input_bw": "2.52GB/s", - "reconnects": 77497, - "status_2xx": 387221, + "bandwidth": "268.14MB/s", + "input_bw": "577.20MB/s", + "reconnects": 521551, + "status_2xx": 121113, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 209988, - "tpl_json": 35133, - "tpl_db": 35356, - "tpl_upload": 40018, - "tpl_compression": 66726 + "tpl_baseline": 46966, + "tpl_json": 7841, + "tpl_db": 7470, + "tpl_upload": 9305, + "tpl_compression": 14610, + "tpl_static": 16142, + "tpl_async_db": 18779 }, { - "framework": "spring-jvm", - "language": "Java", - "rps": 35087, - "avg_latency": "420.78ms", - "p99_latency": "605.30ms", - "cpu": "9537.3%", - "memory": "8.4GiB", + "framework": "ultimate-express", + "language": "JS", + "rps": 60783, + "avg_latency": "246.47ms", + "p99_latency": "991.40ms", + "cpu": "9498.0%", + "memory": "13.1GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.41GB/s", - "input_bw": "3.43GB/s", - "reconnects": 108134, - "status_2xx": 526661, + "bandwidth": "1.72GB/s", + "input_bw": "4.24GB/s", + "reconnects": 191826, + "status_2xx": 912365, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 285262, - "tpl_json": 45987, - "tpl_db": 46164, - "tpl_upload": 56961, - "tpl_compression": 92287 - }, - { - "framework": "workerman", - "language": "PHP", - "rps": 31108, - "avg_latency": "423.03ms", - "p99_latency": "2.73s", - "cpu": "10277.1%", - "memory": "3.0GiB", - "connections": 16384, - "threads": 64, - "duration": "5s", - "pipeline": 1, - "bandwidth": "1.41GB/s", - "input_bw": "3.04GB/s", - "reconnects": 113667, - "status_2xx": 466942, - "status_3xx": 0, - "status_4xx": 58531, - "status_5xx": 0, - "tpl_baseline": 280086, - "tpl_json": 47990, - "tpl_db": 48586, - "tpl_upload": 6, - "tpl_compression": 90274 + "tpl_baseline": 349709, + "tpl_json": 57232, + "tpl_db": 58137, + "tpl_upload": 70576, + "tpl_compression": 112330, + "tpl_static": 125439, + "tpl_async_db": 138942 } ] \ No newline at end of file diff --git a/site/data/mixed-4096.json b/site/data/mixed-4096.json index 24a29769..2c4c33ad 100644 --- a/site/data/mixed-4096.json +++ b/site/data/mixed-4096.json @@ -1,977 +1,1022 @@ [ + { + "framework": "go-fasthttp", + "language": "Go", + "rps": 49427, + "avg_latency": "71.02ms", + "p99_latency": "718.70ms", + "cpu": "10302.9%", + "memory": "80.7GiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "1.78GB/s", + "input_bw": "4.83GB/s", + "reconnects": 160024, + "status_2xx": 741911, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0, + "tpl_baseline": 398728, + "tpl_json": 65805, + "tpl_db": 66562, + "tpl_upload": 82319, + "tpl_compression": 128496 + }, { "framework": "actix", "language": "Rust", - "rps": 38230, - "avg_latency": "100.40ms", - "p99_latency": "1.13s", - "cpu": "10320.9%", - "memory": "5.2GiB", + "rps": 68339, + "avg_latency": "56.22ms", + "p99_latency": "481.60ms", + "cpu": "9525.9%", + "memory": "3.8GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.59GB/s", - "input_bw": "3.74GB/s", - "reconnects": 123967, - "status_2xx": 573844, + "bandwidth": "2.13GB/s", + "input_bw": "4.77GB/s", + "reconnects": 219877, + "status_2xx": 1025772, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 307797, - "tpl_json": 51418, - "tpl_db": 51966, - "tpl_upload": 64441, - "tpl_compression": 98222 + "tpl_baseline": 397449, + "tpl_json": 64349, + "tpl_db": 64559, + "tpl_upload": 79828, + "tpl_compression": 124409, + "tpl_static": 138960, + "tpl_async_db": 156218 }, { "framework": "aspnet-minimal", "language": "C#", - "rps": 6197, - "avg_latency": "527.41ms", - "p99_latency": "5.00s", - "cpu": "8501.5%", - "memory": "1.9GiB", + "rps": 11928, + "avg_latency": "253.83ms", + "p99_latency": "2.08s", + "cpu": "10322.7%", + "memory": "1015.0MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "311.67MB/s", - "input_bw": "620.09MB/s", - "reconnects": 19161, - "status_2xx": 92963, + "bandwidth": "445.63MB/s", + "input_bw": "852.72MB/s", + "reconnects": 37218, + "status_2xx": 178928, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 50052, - "tpl_json": 8968, - "tpl_db": 8814, - "tpl_upload": 9467, - "tpl_compression": 15662 + "tpl_baseline": 70808, + "tpl_json": 12314, + "tpl_db": 12226, + "tpl_upload": 14547, + "tpl_compression": 21368, + "tpl_static": 22019, + "tpl_async_db": 25646 }, { "framework": "bun", "language": "TS", - "rps": 52274, - "avg_latency": "72.41ms", - "p99_latency": "332.10ms", - "cpu": "10653.1%", - "memory": "6.1GiB", + "rps": 66076, + "avg_latency": "57.60ms", + "p99_latency": "293.80ms", + "cpu": "9973.1%", + "memory": "6.0GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.93GB/s", - "input_bw": "5.11GB/s", - "reconnects": 169316, - "status_2xx": 784638, + "bandwidth": "1.84GB/s", + "input_bw": "4.61GB/s", + "reconnects": 212172, + "status_2xx": 991153, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 425788, - "tpl_json": 69068, - "tpl_db": 69311, - "tpl_upload": 85169, - "tpl_compression": 135301 + "tpl_baseline": 382770, + "tpl_json": 61702, + "tpl_db": 61751, + "tpl_upload": 76197, + "tpl_compression": 120919, + "tpl_static": 135995, + "tpl_async_db": 151819 }, { "framework": "chi", "language": "Go", - "rps": 14658, - "avg_latency": "205.06ms", - "p99_latency": "3.49s", - "cpu": "8147.0%", - "memory": "724.9MiB", + "rps": 34365, + "avg_latency": "111.50ms", + "p99_latency": "898.60ms", + "cpu": "7540.8%", + "memory": "595.3MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "498.40MB/s", - "input_bw": "1.43GB/s", - "reconnects": 45858, - "status_2xx": 219874, + "bandwidth": "965.83MB/s", + "input_bw": "2.40GB/s", + "reconnects": 109435, + "status_2xx": 515488, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 127457, - "tpl_json": 24342, - "tpl_db": 19323, - "tpl_upload": 17284, - "tpl_compression": 31468 + "tpl_baseline": 209963, + "tpl_json": 33577, + "tpl_db": 32131, + "tpl_upload": 37906, + "tpl_compression": 57706, + "tpl_static": 65695, + "tpl_async_db": 78510 }, { "framework": "deno", "language": "TS", - "rps": 34442, - "avg_latency": "105.23ms", - "p99_latency": "447.80ms", - "cpu": "9418.1%", - "memory": "14.4GiB", + "rps": 51334, + "avg_latency": "71.17ms", + "p99_latency": "329.10ms", + "cpu": "7938.2%", + "memory": "10.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.69GB/s", - "input_bw": "3.37GB/s", - "reconnects": 110627, - "status_2xx": 516641, + "bandwidth": "1.88GB/s", + "input_bw": "3.58GB/s", + "reconnects": 164138, + "status_2xx": 770013, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 280439, - "tpl_json": 45446, - "tpl_db": 45632, - "tpl_upload": 55917, - "tpl_compression": 89207 + "tpl_baseline": 297221, + "tpl_json": 48074, + "tpl_db": 48116, + "tpl_upload": 59094, + "tpl_compression": 94028, + "tpl_static": 105639, + "tpl_async_db": 117841 }, { "framework": "Django", "language": "Python", - "rps": 30105, - "avg_latency": "80.06ms", - "p99_latency": "218.00ms", - "cpu": "11506.8%", - "memory": "8.5GiB", + "rps": 38703, + "avg_latency": "63.15ms", + "p99_latency": "133.10ms", + "cpu": "11032.3%", + "memory": "10.1GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.45GB/s", - "input_bw": "2.94GB/s", - "reconnects": 451742, - "status_2xx": 451587, + "bandwidth": "1.42GB/s", + "input_bw": "2.70GB/s", + "reconnects": 580710, + "status_2xx": 580545, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 225873, - "tpl_json": 45190, - "tpl_db": 45211, - "tpl_upload": 45182, - "tpl_compression": 90131 + "tpl_baseline": 207549, + "tpl_json": 41495, + "tpl_db": 41490, + "tpl_upload": 41520, + "tpl_compression": 82782, + "tpl_static": 82794, + "tpl_async_db": 82915 }, { "framework": "drogon", "language": "C++", - "rps": 18898, - "avg_latency": "198.86ms", - "p99_latency": "3.27s", - "cpu": "11888.8%", - "memory": "816.8MiB", + "rps": 26500, + "avg_latency": "144.32ms", + "p99_latency": "2.30s", + "cpu": "11412.5%", + "memory": "758.9MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "589.22MB/s", + "bandwidth": "622.44MB/s", "input_bw": "1.85GB/s", - "reconnects": 60918, - "status_2xx": 283477, + "reconnects": 84754, + "status_2xx": 397506, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 155338, - "tpl_json": 26966, - "tpl_db": 27609, - "tpl_upload": 28831, - "tpl_compression": 44733 + "tpl_baseline": 159773, + "tpl_json": 27087, + "tpl_db": 27565, + "tpl_upload": 29530, + "tpl_compression": 43764, + "tpl_static": 50691, + "tpl_async_db": 59096 }, { "framework": "echo", "language": "Go", - "rps": 14639, - "avg_latency": "210.15ms", - "p99_latency": "3.48s", - "cpu": "8214.1%", - "memory": "1010.0MiB", + "rps": 36125, + "avg_latency": "103.27ms", + "p99_latency": "930.30ms", + "cpu": "7928.2%", + "memory": "1.7GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "490.65MB/s", - "input_bw": "1.43GB/s", - "reconnects": 45871, - "status_2xx": 219588, + "bandwidth": "984.45MB/s", + "input_bw": "2.52GB/s", + "reconnects": 115334, + "status_2xx": 541885, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 127283, - "tpl_json": 24826, - "tpl_db": 19410, - "tpl_upload": 17143, - "tpl_compression": 30926 + "tpl_baseline": 225787, + "tpl_json": 38594, + "tpl_db": 30502, + "tpl_upload": 35039, + "tpl_compression": 58622, + "tpl_static": 70154, + "tpl_async_db": 83187 }, { "framework": "Elysia", "language": "TS", - "rps": 51251, - "avg_latency": "74.10ms", - "p99_latency": "338.30ms", - "cpu": "10559.5%", - "memory": "9.4GiB", + "rps": 64011, + "avg_latency": "59.39ms", + "p99_latency": "312.00ms", + "cpu": "9935.9%", + "memory": "9.3GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.89GB/s", - "input_bw": "5.01GB/s", - "reconnects": 165794, - "status_2xx": 768769, + "bandwidth": "1.79GB/s", + "input_bw": "4.47GB/s", + "reconnects": 205498, + "status_2xx": 960170, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 417422, - "tpl_json": 67799, - "tpl_db": 67902, - "tpl_upload": 83337, - "tpl_compression": 132309 + "tpl_baseline": 370950, + "tpl_json": 60010, + "tpl_db": 59990, + "tpl_upload": 73826, + "tpl_compression": 117154, + "tpl_static": 131587, + "tpl_async_db": 146653 }, { "framework": "Express", "language": "JS", - "rps": 37033, - "avg_latency": "29.88ms", - "p99_latency": "241.30ms", - "cpu": "11090.1%", - "memory": "9.8GiB", + "rps": 46995, + "avg_latency": "22.81ms", + "p99_latency": "242.50ms", + "cpu": "10552.3%", + "memory": "10.0GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.39GB/s", - "input_bw": "3.62GB/s", - "reconnects": 120868, - "status_2xx": 555497, + "bandwidth": "1.33GB/s", + "input_bw": "3.28GB/s", + "reconnects": 151915, + "status_2xx": 704931, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 301675, - "tpl_json": 48557, - "tpl_db": 48512, - "tpl_upload": 60222, - "tpl_compression": 96531 + "tpl_baseline": 271600, + "tpl_json": 43685, + "tpl_db": 43653, + "tpl_upload": 54240, + "tpl_compression": 86463, + "tpl_static": 96976, + "tpl_async_db": 108314 }, { "framework": "FastAPI", "language": "Python", - "rps": 36417, - "avg_latency": "102.70ms", - "p99_latency": "527.10ms", - "cpu": "11755.1%", - "memory": "11.4GiB", + "rps": 50853, + "avg_latency": "73.71ms", + "p99_latency": "402.20ms", + "cpu": "11393.3%", + "memory": "11.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.43GB/s", - "input_bw": "3.56GB/s", - "reconnects": 117773, - "status_2xx": 546268, + "bandwidth": "1.51GB/s", + "input_bw": "3.55GB/s", + "reconnects": 163350, + "status_2xx": 762795, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 296234, - "tpl_json": 48354, - "tpl_db": 48636, - "tpl_upload": 59493, - "tpl_compression": 93551 + "tpl_baseline": 295384, + "tpl_json": 47777, + "tpl_db": 47858, + "tpl_upload": 58826, + "tpl_compression": 92713, + "tpl_static": 103841, + "tpl_async_db": 116396 }, { "framework": "Fastify", "language": "JS", - "rps": 39844, - "avg_latency": "25.69ms", - "p99_latency": "161.00ms", - "cpu": "11013.6%", - "memory": "10.2GiB", + "rps": 55955, + "avg_latency": "23.74ms", + "p99_latency": "212.20ms", + "cpu": "10249.5%", + "memory": "10.1GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.50GB/s", - "input_bw": "3.89GB/s", - "reconnects": 130056, - "status_2xx": 597660, + "bandwidth": "1.58GB/s", + "input_bw": "3.91GB/s", + "reconnects": 180713, + "status_2xx": 839330, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 324668, - "tpl_json": 51988, - "tpl_db": 51941, - "tpl_upload": 64670, - "tpl_compression": 104393 + "tpl_baseline": 324028, + "tpl_json": 51990, + "tpl_db": 51953, + "tpl_upload": 64187, + "tpl_compression": 103065, + "tpl_static": 115471, + "tpl_async_db": 128636 }, { - "framework": "fiber", - "language": "Go", - "rps": 31814, - "avg_latency": "116.35ms", - "p99_latency": "1.02s", - "cpu": "9257.4%", - "memory": "4.1GiB", - "connections": 4096, - "threads": 64, - "duration": "5s", - "pipeline": 1, - "bandwidth": "1.23GB/s", - "input_bw": "3.11GB/s", - "reconnects": 103342, - "status_2xx": 477210, - "status_3xx": 0, - "status_4xx": 0, - "status_5xx": 0, - "tpl_baseline": 254459, - "tpl_json": 43058, - "tpl_db": 43757, - "tpl_upload": 55426, - "tpl_compression": 80510 - }, - { - "framework": "flask", + "framework": "FastPySGI-ASGI", "language": "Python", - "rps": 30596, - "avg_latency": "78.78ms", - "p99_latency": "134.70ms", - "cpu": "11698.7%", - "memory": "7.1GiB", + "rps": 43259, + "avg_latency": "87.98ms", + "p99_latency": "609.00ms", + "cpu": "11465.0%", + "memory": "2.5GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.50GB/s", - "input_bw": "2.99GB/s", - "reconnects": 459343, - "status_2xx": 458950, + "bandwidth": "1.72GB/s", + "input_bw": "4.23GB/s", + "reconnects": 140199, + "status_2xx": 649322, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 229517, - "tpl_json": 45987, - "tpl_db": 46014, - "tpl_upload": 45710, - "tpl_compression": 91652 + "tpl_baseline": 352883, + "tpl_json": 56632, + "tpl_db": 56736, + "tpl_upload": 70589, + "tpl_compression": 112482 }, { - "framework": "GenHTTP", - "language": "C#", - "rps": 7874, - "avg_latency": "358.02ms", - "p99_latency": "4.55s", - "cpu": "10378.4%", - "memory": "2.0GiB", + "framework": "FastPySGI-WSGI", + "language": "Python", + "rps": 44164, + "avg_latency": "88.08ms", + "p99_latency": "783.70ms", + "cpu": "11635.7%", + "memory": "1.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "404.09MB/s", - "input_bw": "787.90MB/s", - "reconnects": 24565, - "status_2xx": 118120, + "bandwidth": "1.76GB/s", + "input_bw": "4.32GB/s", + "reconnects": 143678, + "status_2xx": 662468, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 63215, - "tpl_json": 10820, - "tpl_db": 10731, - "tpl_upload": 13010, - "tpl_compression": 20344 + "tpl_baseline": 359738, + "tpl_json": 57883, + "tpl_db": 57735, + "tpl_upload": 72163, + "tpl_compression": 114949 }, { - "framework": "gin", + "framework": "fiber", "language": "Go", - "rps": 14553, - "avg_latency": "212.86ms", - "p99_latency": "3.38s", - "cpu": "8121.6%", - "memory": "1.4GiB", + "rps": 58490, + "avg_latency": "60.18ms", + "p99_latency": "462.20ms", + "cpu": "8394.1%", + "memory": "761.4MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "493.49MB/s", - "input_bw": "1.42GB/s", - "reconnects": 45420, - "status_2xx": 218300, + "bandwidth": "1.61GB/s", + "input_bw": "4.08GB/s", + "reconnects": 187017, + "status_2xx": 877352, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 125128, - "tpl_json": 24313, - "tpl_db": 19810, - "tpl_upload": 17915, - "tpl_compression": 31133 + "tpl_baseline": 341385, + "tpl_json": 58071, + "tpl_db": 58889, + "tpl_upload": 74904, + "tpl_compression": 109156, + "tpl_static": 108520, + "tpl_async_db": 126427 }, { - "framework": "go-fasthttp", - "language": "Go", - "rps": 49427, - "avg_latency": "71.02ms", - "p99_latency": "718.70ms", - "cpu": "10302.9%", - "memory": "80.7GiB", + "framework": "flask", + "language": "Python", + "rps": 39309, + "avg_latency": "62.41ms", + "p99_latency": "151.90ms", + "cpu": "11036.4%", + "memory": "8.8GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.78GB/s", - "input_bw": "4.83GB/s", - "reconnects": 160024, - "status_2xx": 741911, + "bandwidth": "1.46GB/s", + "input_bw": "2.74GB/s", + "reconnects": 589920, + "status_2xx": 589645, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 398728, - "tpl_json": 65805, - "tpl_db": 66562, - "tpl_upload": 82319, - "tpl_compression": 128496 + "tpl_baseline": 210761, + "tpl_json": 42192, + "tpl_db": 42211, + "tpl_upload": 42044, + "tpl_compression": 84068, + "tpl_static": 84174, + "tpl_async_db": 84195 }, { - "framework": "Hono (Bun)", - "language": "TS", - "rps": 49378, - "avg_latency": "76.88ms", - "p99_latency": "355.70ms", - "cpu": "10569.0%", - "memory": "7.1GiB", + "framework": "GenHTTP", + "language": "C#", + "rps": 10885, + "avg_latency": "322.82ms", + "p99_latency": "4.35s", + "cpu": "9557.2%", + "memory": "2.1GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.83GB/s", - "input_bw": "4.83GB/s", - "reconnects": 159668, - "status_2xx": 740676, + "bandwidth": "414.63MB/s", + "input_bw": "778.16MB/s", + "reconnects": 33512, + "status_2xx": 163286, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 402103, - "tpl_json": 65179, - "tpl_db": 65451, - "tpl_upload": 80348, - "tpl_compression": 127595 + "tpl_baseline": 64093, + "tpl_json": 10712, + "tpl_db": 10678, + "tpl_upload": 13143, + "tpl_compression": 19937, + "tpl_static": 21019, + "tpl_async_db": 23704 }, { - "framework": "hono (node)", - "language": "JS", - "rps": 34650, - "avg_latency": "29.42ms", - "p99_latency": "264.30ms", - "cpu": "11133.0%", - "memory": "10.8GiB", + "framework": "gin", + "language": "Go", + "rps": 32477, + "avg_latency": "115.41ms", + "p99_latency": "969.60ms", + "cpu": "7851.2%", + "memory": "988.2MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.30GB/s", - "input_bw": "3.39GB/s", - "reconnects": 113016, - "status_2xx": 519752, + "bandwidth": "956.24MB/s", + "input_bw": "2.27GB/s", + "reconnects": 104357, + "status_2xx": 487162, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 282244, - "tpl_json": 45258, - "tpl_db": 45357, - "tpl_upload": 56326, - "tpl_compression": 90566 + "tpl_baseline": 193482, + "tpl_json": 32482, + "tpl_db": 31285, + "tpl_upload": 37773, + "tpl_compression": 57406, + "tpl_static": 63469, + "tpl_async_db": 71265 }, { - "framework": "kemal", - "language": "Crystal", - "rps": 40317, - "avg_latency": "86.83ms", - "p99_latency": "320.30ms", - "cpu": "11265.4%", - "memory": "26.3GiB", + "framework": "Hono (Bun)", + "language": "TS", + "rps": 62364, + "avg_latency": "61.03ms", + "p99_latency": "316.20ms", + "cpu": "9918.8%", + "memory": "7.0GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.62GB/s", - "input_bw": "3.94GB/s", - "reconnects": 129869, - "status_2xx": 604768, + "bandwidth": "1.74GB/s", + "input_bw": "4.35GB/s", + "reconnects": 200103, + "status_2xx": 935473, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 325213, - "tpl_json": 53462, - "tpl_db": 53774, - "tpl_upload": 67434, - "tpl_compression": 104885 + "tpl_baseline": 362169, + "tpl_json": 58286, + "tpl_db": 58389, + "tpl_upload": 71800, + "tpl_compression": 113816, + "tpl_static": 127885, + "tpl_async_db": 143128 }, { - "framework": "Koa", + "framework": "hono (node)", "language": "JS", - "rps": 45268, - "avg_latency": "30.05ms", - "p99_latency": "263.70ms", - "cpu": "10916.5%", - "memory": "9.7GiB", + "rps": 48932, + "avg_latency": "23.21ms", + "p99_latency": "239.00ms", + "cpu": "10395.6%", + "memory": "10.1GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.70GB/s", - "input_bw": "4.42GB/s", - "reconnects": 147714, - "status_2xx": 679022, - "status_3xx": 0, - "status_4xx": 0, - "status_5xx": 0, - "tpl_baseline": 369444, - "tpl_json": 59177, - "tpl_db": 59157, - "tpl_upload": 73101, - "tpl_compression": 118143 - }, - { - "framework": "nginx-openresty", - "language": "Lua", - "rps": 20578, - "avg_latency": "180.08ms", - "p99_latency": "731.90ms", - "cpu": "11902.7%", - "memory": "4.9GiB", - "connections": 4096, - "threads": 64, - "duration": "5s", - "pipeline": 1, - "bandwidth": "823.00MB/s", - "input_bw": "2.01GB/s", - "reconnects": 65693, - "status_2xx": 308888, + "bandwidth": "1.39GB/s", + "input_bw": "3.42GB/s", + "reconnects": 158265, + "status_2xx": 733980, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 166539, - "tpl_json": 28023, - "tpl_db": 28288, - "tpl_upload": 33684, - "tpl_compression": 52354 + "tpl_baseline": 282486, + "tpl_json": 45315, + "tpl_db": 45390, + "tpl_upload": 56340, + "tpl_compression": 90590, + "tpl_static": 101232, + "tpl_async_db": 112627 }, { - "framework": "node", - "language": "JS", - "rps": 47714, - "avg_latency": "36.60ms", - "p99_latency": "146.80ms", - "cpu": "10816.5%", - "memory": "8.6GiB", + "framework": "hummingbird", + "language": "Swift", + "rps": 20104, + "avg_latency": "30.99ms", + "p99_latency": "261.40ms", + "cpu": "10462.5%", + "memory": "915.3MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.79GB/s", - "input_bw": "4.66GB/s", - "reconnects": 155683, - "status_2xx": 715722, + "bandwidth": "687.01MB/s", + "input_bw": "1.40GB/s", + "reconnects": 72741, + "status_2xx": 301566, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 389373, - "tpl_json": 62388, - "tpl_db": 62297, - "tpl_upload": 77181, - "tpl_compression": 124482 + "tpl_baseline": 110734, + "tpl_json": 20956, + "tpl_db": 20790, + "tpl_upload": 21480, + "tpl_compression": 41551, + "tpl_static": 42300, + "tpl_async_db": 43755 }, { - "framework": "phoenix", - "language": "Elixir", - "rps": 9147, - "avg_latency": "365.32ms", - "p99_latency": "3.47s", - "cpu": "3694.7%", - "memory": "2.7GiB", + "framework": "kemal", + "language": "Crystal", + "rps": 60804, + "avg_latency": "56.71ms", + "p99_latency": "232.70ms", + "cpu": "10774.0%", + "memory": "27.7GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "243.65MB/s", - "input_bw": "915.28MB/s", - "reconnects": 26740, - "status_2xx": 137209, + "bandwidth": "1.83GB/s", + "input_bw": "4.24GB/s", + "reconnects": 194918, + "status_2xx": 912066, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 82044, - "tpl_json": 18023, - "tpl_db": 16125, - "tpl_upload": 6120, - "tpl_compression": 14897 + "tpl_baseline": 352511, + "tpl_json": 57441, + "tpl_db": 57698, + "tpl_upload": 72414, + "tpl_compression": 112013, + "tpl_static": 122383, + "tpl_async_db": 137606 }, { - "framework": "rocket", - "language": "Rust", - "rps": 40604, - "avg_latency": "97.11ms", - "p99_latency": "541.70ms", - "cpu": "6386.6%", - "memory": "335.8MiB", + "framework": "Koa", + "language": "JS", + "rps": 60373, + "avg_latency": "17.06ms", + "p99_latency": "106.40ms", + "cpu": "10368.8%", + "memory": "9.5GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, "bandwidth": "1.71GB/s", - "input_bw": "3.97GB/s", - "reconnects": 132417, - "status_2xx": 609068, + "input_bw": "4.21GB/s", + "reconnects": 195139, + "status_2xx": 905601, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 330945, - "tpl_json": 53145, - "tpl_db": 53076, - "tpl_upload": 66261, - "tpl_compression": 105638 + "tpl_baseline": 348863, + "tpl_json": 55780, + "tpl_db": 55793, + "tpl_upload": 69306, + "tpl_compression": 111575, + "tpl_static": 125084, + "tpl_async_db": 139200 }, { - "framework": "salvo", - "language": "Rust", - "rps": 45234, - "avg_latency": "86.05ms", - "p99_latency": "415.90ms", - "cpu": "9665.4%", - "memory": "1.5GiB", + "framework": "ktor", + "language": "Kotlin", + "rps": 22716, + "avg_latency": "164.04ms", + "p99_latency": "652.80ms", + "cpu": "10726.5%", + "memory": "7.4GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.90GB/s", - "input_bw": "4.42GB/s", - "reconnects": 147271, - "status_2xx": 678521, + "bandwidth": "548.45MB/s", + "input_bw": "1.59GB/s", + "reconnects": 71692, + "status_2xx": 340746, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 366993, - "tpl_json": 59606, - "tpl_db": 59422, - "tpl_upload": 74630, - "tpl_compression": 117870 + "tpl_baseline": 132296, + "tpl_json": 21393, + "tpl_db": 21373, + "tpl_upload": 26320, + "tpl_compression": 41522, + "tpl_static": 46138, + "tpl_async_db": 51704 }, { - "framework": "Starlette", - "language": "Python", - "rps": 37632, - "avg_latency": "99.87ms", - "p99_latency": "505.00ms", - "cpu": "11769.1%", - "memory": "8.8GiB", + "framework": "nginx-openresty", + "language": "Lua", + "rps": 28221, + "avg_latency": "132.57ms", + "p99_latency": "540.40ms", + "cpu": "12274.3%", + "memory": "4.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.48GB/s", - "input_bw": "3.68GB/s", - "reconnects": 121718, - "status_2xx": 564490, + "bandwidth": "850.41MB/s", + "input_bw": "1.97GB/s", + "reconnects": 89710, + "status_2xx": 423607, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 306532, - "tpl_json": 49966, - "tpl_db": 50195, - "tpl_upload": 61274, - "tpl_compression": 96523 + "tpl_baseline": 164995, + "tpl_json": 27246, + "tpl_db": 27363, + "tpl_upload": 32776, + "tpl_compression": 51009, + "tpl_static": 56681, + "tpl_async_db": 63537 }, { - "framework": "ulfius", - "language": "C", - "rps": 6645, - "avg_latency": "56.28ms", - "p99_latency": "508.20ms", - "cpu": "1663.9%", - "memory": "571.9MiB", + "framework": "node", + "language": "JS", + "rps": 63104, + "avg_latency": "19.20ms", + "p99_latency": "110.20ms", + "cpu": "10074.2%", + "memory": "8.7GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "299.25MB/s", - "input_bw": "664.92MB/s", - "reconnects": 532268, - "status_2xx": 99689, + "bandwidth": "1.79GB/s", + "input_bw": "4.41GB/s", + "reconnects": 203861, + "status_2xx": 946562, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 54546, - "tpl_json": 8550, - "tpl_db": 8664, - "tpl_upload": 10665, - "tpl_compression": 17264 + "tpl_baseline": 365003, + "tpl_json": 58696, + "tpl_db": 58583, + "tpl_upload": 72612, + "tpl_compression": 116554, + "tpl_static": 130253, + "tpl_async_db": 144861 }, { - "framework": "ultimate-express", - "language": "JS", - "rps": 51537, - "avg_latency": "72.67ms", - "p99_latency": "368.50ms", - "cpu": "11386.9%", - "memory": "10.0GiB", + "framework": "ntex-tokio", + "language": "Rust", + "rps": 76504, + "avg_latency": "48.76ms", + "p99_latency": "293.40ms", + "cpu": "10266.0%", + "memory": "1.4GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.93GB/s", - "input_bw": "5.04GB/s", - "reconnects": 166914, - "status_2xx": 773058, + "bandwidth": "2.41GB/s", + "input_bw": "5.34GB/s", + "reconnects": 245645, + "status_2xx": 1147561, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 419191, - "tpl_json": 67723, - "tpl_db": 67959, - "tpl_upload": 84055, - "tpl_compression": 134130 + "tpl_baseline": 442969, + "tpl_json": 71092, + "tpl_db": 71227, + "tpl_upload": 88190, + "tpl_compression": 140506, + "tpl_static": 157665, + "tpl_async_db": 175912 }, { - "framework": "FastPySGI-ASGI", - "language": "Python", - "rps": 43259, - "avg_latency": "87.98ms", - "p99_latency": "609.00ms", - "cpu": "11465.0%", - "memory": "2.5GiB", + "framework": "phoenix", + "language": "Elixir", + "rps": 15237, + "avg_latency": "205.35ms", + "p99_latency": "2.94s", + "cpu": "4874.0%", + "memory": "2.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.72GB/s", - "input_bw": "4.23GB/s", - "reconnects": 140199, - "status_2xx": 649322, + "bandwidth": "301.95MB/s", + "input_bw": "1.06GB/s", + "reconnects": 46285, + "status_2xx": 228561, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 352883, - "tpl_json": 56632, - "tpl_db": 56736, - "tpl_upload": 70589, - "tpl_compression": 112482 + "tpl_baseline": 108196, + "tpl_json": 20799, + "tpl_db": 16580, + "tpl_upload": 8500, + "tpl_compression": 17116, + "tpl_static": 24340, + "tpl_async_db": 33030 }, { - "framework": "FastPySGI-WSGI", - "language": "Python", - "rps": 44164, - "avg_latency": "88.08ms", - "p99_latency": "783.70ms", - "cpu": "11635.7%", - "memory": "1.2GiB", + "framework": "quarkus-jvm", + "language": "Java", + "rps": 46316, + "avg_latency": "81.80ms", + "p99_latency": "749.00ms", + "cpu": "9496.5%", + "memory": "12.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.76GB/s", - "input_bw": "4.32GB/s", - "reconnects": 143678, - "status_2xx": 662468, + "bandwidth": "1.34GB/s", + "input_bw": "3.23GB/s", + "reconnects": 148450, + "status_2xx": 695204, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 359738, - "tpl_json": 57883, - "tpl_db": 57735, - "tpl_upload": 72163, - "tpl_compression": 114949 + "tpl_baseline": 271161, + "tpl_json": 44452, + "tpl_db": 44591, + "tpl_upload": 52646, + "tpl_compression": 82087, + "tpl_static": 94125, + "tpl_async_db": 106142 }, { - "framework": "hummingbird", - "language": "Swift", - "rps": 14577, - "avg_latency": "39.36ms", - "p99_latency": "279.00ms", - "cpu": "10764.1%", - "memory": "928.5MiB", + "framework": "Rails", + "language": "Ruby", + "rps": 30414, + "avg_latency": "121.03ms", + "p99_latency": "516.60ms", + "cpu": "9426.3%", + "memory": "25.3GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "651.02MB/s", - "input_bw": "1.42GB/s", - "reconnects": 52832, - "status_2xx": 218666, + "bandwidth": "933.18MB/s", + "input_bw": "2.12GB/s", + "reconnects": 96568, + "status_2xx": 456223, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 112238, - "tpl_json": 21198, - "tpl_db": 21097, - "tpl_upload": 21832, - "tpl_compression": 42301 + "tpl_baseline": 175785, + "tpl_json": 28579, + "tpl_db": 28760, + "tpl_upload": 35311, + "tpl_compression": 55917, + "tpl_static": 62409, + "tpl_async_db": 69462 }, { - "framework": "ktor", - "language": "Kotlin", - "rps": 16496, - "avg_latency": "223.28ms", - "p99_latency": "894.70ms", - "cpu": "10831.5%", - "memory": "8.5GiB", + "framework": "rocket", + "language": "Rust", + "rps": 30160, + "avg_latency": "18.27ms", + "p99_latency": "272.00ms", + "cpu": "3579.1%", + "memory": "273.6MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "519.48MB/s", - "input_bw": "1.61GB/s", - "reconnects": 52044, - "status_2xx": 247442, + "bandwidth": "990.13MB/s", + "input_bw": "2.11GB/s", + "reconnects": 97852, + "status_2xx": 452413, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 134001, - "tpl_json": 22032, - "tpl_db": 21986, - "tpl_upload": 26934, - "tpl_compression": 42489 + "tpl_baseline": 174231, + "tpl_json": 28067, + "tpl_db": 27898, + "tpl_upload": 33157, + "tpl_compression": 56213, + "tpl_static": 62988, + "tpl_async_db": 69859 }, { - "framework": "ntex-tokio", + "framework": "salvo", "language": "Rust", - "rps": 29545, - "avg_latency": "120.90ms", - "p99_latency": "569.50ms", - "cpu": "8736.1%", - "memory": "2.1GiB", + "rps": 64367, + "avg_latency": "8.64ms", + "p99_latency": "26.70ms", + "cpu": "8923.5%", + "memory": "910.8MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "5.32GB/s", - "input_bw": "2.89GB/s", - "reconnects": 95270, - "status_2xx": 443772, + "bandwidth": "2.03GB/s", + "input_bw": "4.49GB/s", + "reconnects": 208067, + "status_2xx": 965514, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 240586, - "tpl_json": 39028, - "tpl_db": 39335, - "tpl_upload": 48252, - "tpl_compression": 76571 + "tpl_baseline": 372337, + "tpl_json": 59941, + "tpl_db": 59910, + "tpl_upload": 73302, + "tpl_compression": 118692, + "tpl_static": 133068, + "tpl_async_db": 148264 }, { - "framework": "quarkus-jvm", - "language": "Java", - "rps": 34438, - "avg_latency": "107.20ms", - "p99_latency": "1.01s", - "cpu": "9616.1%", - "memory": "12.2GiB", + "framework": "Sinatra", + "language": "Ruby", + "rps": 33747, + "avg_latency": "110.14ms", + "p99_latency": "838.80ms", + "cpu": "9209.2%", + "memory": "24.9GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.28GB/s", - "input_bw": "3.37GB/s", - "reconnects": 110724, - "status_2xx": 516915, + "bandwidth": "1018.19MB/s", + "input_bw": "2.36GB/s", + "reconnects": 107267, + "status_2xx": 506206, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 283245, - "tpl_json": 48834, - "tpl_db": 48104, - "tpl_upload": 53678, - "tpl_compression": 83054 + "tpl_baseline": 196557, + "tpl_json": 31880, + "tpl_db": 31991, + "tpl_upload": 39034, + "tpl_compression": 61182, + "tpl_static": 68690, + "tpl_async_db": 76872 }, { - "framework": "Rails", - "language": "Ruby", - "rps": 23492, - "avg_latency": "157.69ms", - "p99_latency": "609.50ms", - "cpu": "10647.2%", - "memory": "30.9GiB", + "framework": "spring-jvm", + "language": "Java", + "rps": 50162, + "avg_latency": "75.90ms", + "p99_latency": "133.40ms", + "cpu": "9978.5%", + "memory": "5.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "954.56MB/s", - "input_bw": "2.30GB/s", - "reconnects": 74849, - "status_2xx": 352388, + "bandwidth": "1.50GB/s", + "input_bw": "3.50GB/s", + "reconnects": 160507, + "status_2xx": 752431, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 190783, - "tpl_json": 31068, - "tpl_db": 31268, - "tpl_upload": 38410, - "tpl_compression": 60859 + "tpl_baseline": 289322, + "tpl_json": 46407, + "tpl_db": 46446, + "tpl_upload": 57909, + "tpl_compression": 92525, + "tpl_static": 103953, + "tpl_async_db": 115869 }, { - "framework": "Sinatra", - "language": "Ruby", - "rps": 26634, - "avg_latency": "139.59ms", - "p99_latency": "765.40ms", - "cpu": "9929.9%", - "memory": "26.0GiB", + "framework": "Starlette", + "language": "Python", + "rps": 52575, + "avg_latency": "71.28ms", + "p99_latency": "392.40ms", + "cpu": "11183.3%", + "memory": "10.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.05GB/s", - "input_bw": "2.60GB/s", - "reconnects": 85135, - "status_2xx": 399512, + "bandwidth": "1.56GB/s", + "input_bw": "3.67GB/s", + "reconnects": 168900, + "status_2xx": 788626, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 216464, - "tpl_json": 35387, - "tpl_db": 35573, - "tpl_upload": 43430, - "tpl_compression": 68658 + "tpl_baseline": 305619, + "tpl_json": 49395, + "tpl_db": 49480, + "tpl_upload": 60751, + "tpl_compression": 95673, + "tpl_static": 107386, + "tpl_async_db": 120322 }, { - "framework": "spring-jvm", - "language": "Java", - "rps": 34628, - "avg_latency": "109.48ms", - "p99_latency": "219.10ms", - "cpu": "9898.3%", - "memory": "4.4GiB", + "framework": "ulfius", + "language": "C", + "rps": 7556, + "avg_latency": "56.55ms", + "p99_latency": "442.00ms", + "cpu": "1256.0%", + "memory": "471.1MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.38GB/s", - "input_bw": "3.38GB/s", - "reconnects": 111385, - "status_2xx": 519421, + "bandwidth": "254.42MB/s", + "input_bw": "540.17MB/s", + "reconnects": 555589, + "status_2xx": 113344, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 281553, - "tpl_json": 45386, - "tpl_db": 45282, - "tpl_upload": 56515, - "tpl_compression": 90685 + "tpl_baseline": 43725, + "tpl_json": 6978, + "tpl_db": 7144, + "tpl_upload": 8960, + "tpl_compression": 13865, + "tpl_static": 15142, + "tpl_async_db": 17530 }, { - "framework": "workerman", - "language": "PHP", - "rps": 34552, - "avg_latency": "100.12ms", - "p99_latency": "793.30ms", - "cpu": "11295.6%", - "memory": "2.6GiB", + "framework": "ultimate-express", + "language": "JS", + "rps": 67858, + "avg_latency": "55.31ms", + "p99_latency": "295.20ms", + "cpu": "10910.4%", + "memory": "9.9GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.55GB/s", - "input_bw": "3.38GB/s", - "reconnects": 125834, - "status_2xx": 518288, + "bandwidth": "1.92GB/s", + "input_bw": "4.74GB/s", + "reconnects": 218020, + "status_2xx": 1017880, "status_3xx": 0, - "status_4xx": 63226, + "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 315326, - "tpl_json": 51507, - "tpl_db": 51783, - "tpl_upload": 0, - "tpl_compression": 99672 + "tpl_baseline": 392359, + "tpl_json": 63234, + "tpl_db": 63217, + "tpl_upload": 78507, + "tpl_compression": 124985, + "tpl_static": 139772, + "tpl_async_db": 155806 } ] \ No newline at end of file diff --git a/site/layouts/shortcodes/leaderboard-composite.html b/site/layouts/shortcodes/leaderboard-composite.html index 6e725617..f4945174 100644 --- a/site/layouts/shortcodes/leaderboard-composite.html +++ b/site/layouts/shortcodes/leaderboard-composite.html @@ -26,7 +26,7 @@ {{ $data := index site.Data $key }} {{ if $data }} {{ range $data }} - {{ $entries = $entries | append (dict "profile" $p.id "label" $p.label "framework" .framework "rps" .rps "language" (.language | default "") "cpu" (.cpu | default "") "memory" (.memory | default "") "bandwidth" (.bandwidth | default "") "tpl_baseline" (.tpl_baseline | default 0) "tpl_json" (.tpl_json | default 0) "tpl_db" (.tpl_db | default 0) "tpl_upload" (.tpl_upload | default 0) "tpl_compression" (.tpl_compression | default 0)) }} + {{ $entries = $entries | append (dict "profile" $p.id "label" $p.label "framework" .framework "rps" .rps "language" (.language | default "") "cpu" (.cpu | default "") "memory" (.memory | default "") "bandwidth" (.bandwidth | default "") "tpl_baseline" (.tpl_baseline | default 0) "tpl_json" (.tpl_json | default 0) "tpl_db" (.tpl_db | default 0) "tpl_upload" (.tpl_upload | default 0) "tpl_compression" (.tpl_compression | default 0) "tpl_static" (.tpl_static | default 0) "tpl_async_db" (.tpl_async_db | default 0)) }} {{ end }} {{ end }} {{ end }} @@ -204,7 +204,7 @@ var data = roundData[key]; if (data) { data.forEach(function(d) { - entries.push({ profile: p.id, label: p.label, framework: d.framework, rps: d.rps, language: d.language || '', cpu: d.cpu || '', memory: d.memory || '', bandwidth: d.bandwidth || '', tpl_baseline: d.tpl_baseline || 0, tpl_json: d.tpl_json || 0, tpl_db: d.tpl_db || 0, tpl_upload: d.tpl_upload || 0, tpl_compression: d.tpl_compression || 0 }); + entries.push({ profile: p.id, label: p.label, framework: d.framework, rps: d.rps, language: d.language || '', cpu: d.cpu || '', memory: d.memory || '', bandwidth: d.bandwidth || '', tpl_baseline: d.tpl_baseline || 0, tpl_json: d.tpl_json || 0, tpl_db: d.tpl_db || 0, tpl_upload: d.tpl_upload || 0, tpl_compression: d.tpl_compression || 0, tpl_static: d.tpl_static || 0, tpl_async_db: d.tpl_async_db || 0 }); }); } }); @@ -230,12 +230,14 @@ counts[key] = (counts[key] || 0) + 1; if (e.profile === 'mixed') { var fw = e.framework; - if (!tplSums[fw]) tplSums[fw] = {baseline:0, json:0, db:0, upload:0, compression:0, count:0}; + if (!tplSums[fw]) tplSums[fw] = {baseline:0, json:0, db:0, upload:0, compression:0, static:0, async_db:0, count:0}; tplSums[fw].baseline += (e.tpl_baseline || 0); tplSums[fw].json += (e.tpl_json || 0); tplSums[fw].db += (e.tpl_db || 0); tplSums[fw].upload += (e.tpl_upload || 0); tplSums[fw].compression += (e.tpl_compression || 0); + tplSums[fw].static += (e.tpl_static || 0); + tplSums[fw].async_db += (e.tpl_async_db || 0); tplSums[fw].count++; } }); @@ -254,7 +256,9 @@ json: t.json / t.count, db: t.db / t.count, upload: t.upload / t.count, - compression: t.compression / t.count + compression: t.compression / t.count, + static: t.static / t.count, + async_db: t.async_db / t.count }; }); fwLang = {}; @@ -340,13 +344,13 @@ }); // For mixed: compute weighted scores and re-normalize - var mixedWeights = {baseline:0.15, json:1, db:10, upload:10, compression:7}; + var mixedWeights = {baseline:0.15, json:1, db:10, upload:10, compression:7, static:2, async_db:10}; if (activeIds.indexOf('mixed') >= 0) { var maxWeighted = 0; Object.keys(avgTplMixed).forEach(function(fw) { if (isExcluded(fw)) return; var t = avgTplMixed[fw]; - var w = t.baseline * mixedWeights.baseline + t.json * mixedWeights.json + t.db * mixedWeights.db + t.upload * mixedWeights.upload + t.compression * mixedWeights.compression; + var w = t.baseline * mixedWeights.baseline + t.json * mixedWeights.json + t.db * mixedWeights.db + t.upload * mixedWeights.upload + t.compression * mixedWeights.compression + (t.static || 0) * mixedWeights.static + (t.async_db || 0) * mixedWeights.async_db; if (w > maxWeighted) maxWeighted = w; }); if (maxWeighted > 0) maxRpsByProfile['mixed'] = maxWeighted; @@ -399,7 +403,7 @@ // For mixed: use weighted template score if (pid === 'mixed' && avgTplMixed[fw]) { var t = avgTplMixed[fw]; - effectiveRps = t.baseline * mixedWeights.baseline + t.json * mixedWeights.json + t.db * mixedWeights.db + t.upload * mixedWeights.upload + t.compression * mixedWeights.compression; + effectiveRps = t.baseline * mixedWeights.baseline + t.json * mixedWeights.json + t.db * mixedWeights.db + t.upload * mixedWeights.upload + t.compression * mixedWeights.compression + (t.static || 0) * mixedWeights.static + (t.async_db || 0) * mixedWeights.async_db; } // For compression: use bandwidth-adjusted RPS if (pid === 'compression' && minBwPerReq[pid]) { diff --git a/site/layouts/shortcodes/leaderboard.html b/site/layouts/shortcodes/leaderboard.html index 3e4d8427..deb6be21 100644 --- a/site/layouts/shortcodes/leaderboard.html +++ b/site/layouts/shortcodes/leaderboard.html @@ -400,7 +400,7 @@ (dict "id" "upload" "label" "Upload (20 MB)" "conns" (slice 64 256 512) "desc" "Each request sends a 20 MB binary payload via POST /upload. The server reads the entire body and returns its CRC32 checksum. Measures request body ingestion throughput — how efficiently a framework handles large uploads, including buffering, memory management, and I/O handling under sustained load.") (dict "id" "compression" "label" "Compression" "conns" (slice 4096 16384) "desc" "Requests GET /compression with Accept-Encoding: gzip. The server loads a 6000-item dataset (~1 MB JSON) at startup and serves it gzip-compressed on the fly. Measures the throughput cost of real-time compression — only frameworks with built-in gzip support are eligible.") (dict "id" "noisy" "label" "Noisy" "conns" (slice 512 4096 16384) "desc" "Valid baseline requests interleaved with malformed noise — nonexistent paths, bad content-length, and raw binary. Only 2xx responses count. Measures resilience: how well a framework maintains throughput while rejecting garbage traffic.") - (dict "id" "mixed" "label" "Mixed Workload" "conns" (slice 4096 16384) "desc" "A realistic mix of request types: 3 baseline GETs, 2 baseline POSTs, 1 JSON processing, 1 SQLite DB lookup, 1 file upload (1 MB), and 2 compression requests. Connections limited to 100 requests each. Measures overall framework performance under a diverse, real-world-like workload that exercises multiple code paths simultaneously.") + (dict "id" "mixed" "label" "Mixed Workload" "conns" (slice 4096 16384) "desc" "A realistic mix of request types: 3 baseline GETs, 2 baseline POSTs, 1 JSON processing, 1 SQLite DB lookup, 1 file upload (1 MB), 2 compression requests, 2 static file serves, and 2 async Postgres queries. Connections limited to 5 requests each. Measures overall framework performance under a diverse, real-world-like workload that exercises multiple code paths simultaneously.") (dict "id" "static" "label" "Static Files" "conns" (slice 4096 16384) "desc" "Serves 20 pre-loaded static files (CSS, JS, HTML, fonts, images, JSON) from /static/{filename} over HTTP/1.1. Files are loaded into memory at startup. Requests cycle through all 20 files. Measures static file serving throughput, MIME type handling, and memory-mapped I/O efficiency.") (dict "id" "pipelined" "label" "Pipelined (16)" "conns" (slice 512 4096 16384) "desc" "16 HTTP requests are sent back-to-back on each connection before waiting for responses. Uses a lightweight GET /pipeline endpoint that returns a fixed response, isolating raw I/O and pipeline handling from application logic. Frameworks that batch pipelined requests from the read buffer gain a significant advantage.") (dict "id" "async-db" "label" "Async DB" "conns" (slice 512 1024) "desc" "Async Postgres query over 100K rows with no index on price, forcing a sequential scan per request. The framework manages its own connection pool and uses an async Postgres driver. Measures event loop scheduling, connection pooling efficiency, and async I/O throughput. Framework-only — engines are excluded.") @@ -555,7 +555,7 @@ {{ $pct := mul (div (float $r.rps) (float $maxRps)) 100.0 }} {{ $meta := index site.Data.frameworks $r.framework }} {{ $s2xx := int ($r.status_2xx | default 0) }}{{ $s3xx := int ($r.status_3xx | default 0) }}{{ $s4xx := int ($r.status_4xx | default 0) }}{{ $s5xx := int ($r.status_5xx | default 0) }}{{ $errs := add $s4xx $s5xx }} -
+
{{ $ftype := "framework" }}{{ with $meta }}{{ $ftype = .type | default "framework" }}{{ end }}
{{ add $j 1 }}
{{ $r.framework }}
@@ -1004,6 +1004,8 @@ row.dataset.tplDb = String(r.tpl_db || 0); row.dataset.tplUpload = String(r.tpl_upload || 0); row.dataset.tplCompression = String(r.tpl_compression || 0); + row.dataset.tplStatic = String(r.tpl_static || 0); + row.dataset.tplAsyncDb = String(r.tpl_async_db || 0); } row.innerHTML = '
' + rank + '
' + @@ -1206,10 +1208,10 @@ return String(n); } -var mixedColors = {baseline:'#3b82f6', json:'#8b5cf6', db:'#f59e0b', upload:'#10b981', compression:'#ef4444'}; -var mixedLabels = {baseline:'Baseline', json:'JSON', db:'DB', upload:'Upload', compression:'Gzip'}; -var mixedKeys = ['baseline','json','db','upload','compression']; -var mixedWeights = {baseline:0.15, json:1, db:10, upload:10, compression:7}; +var mixedColors = {baseline:'#3b82f6', json:'#8b5cf6', db:'#f59e0b', upload:'#10b981', compression:'#ef4444', static:'#06b6d4', async_db:'#d946ef'}; +var mixedLabels = {baseline:'Baseline', json:'JSON', db:'DB', upload:'Upload', compression:'Gzip', static:'Static', async_db:'Async DB'}; +var mixedKeys = ['baseline','json','db','upload','compression','static','async_db']; +var mixedWeights = {baseline:0.15, json:1, db:10, upload:10, compression:7, static:2, async_db:10}; var mixedGrid = '2.5rem 10rem 5.5rem 4.95rem 4.5rem 3.5rem 6rem 5rem 3.5rem 5rem 4.5rem 5.5rem 5rem 5rem 4rem'; @@ -1246,7 +1248,9 @@ json: Number(row.dataset.tplJson) || 0, db: Number(row.dataset.tplDb) || 0, upload: Number(row.dataset.tplUpload) || 0, - compression: Number(row.dataset.tplCompression) || 0 + compression: Number(row.dataset.tplCompression) || 0, + static: Number(row.dataset.tplStatic) || 0, + async_db: Number(row.dataset.tplAsyncDb) || 0 }; var weighted = 0; mixedKeys.forEach(function(k) { weighted += d[k] * mixedWeights[k]; }); @@ -1272,7 +1276,7 @@ barHeader.className = 'lb-mix-header'; barHeader.style.textAlign = 'right'; barHeader.style.fontWeight = '600'; - barHeader.title = 'Weighted score: baseline\u00d70.15 + json\u00d71 + db\u00d710 + upload\u00d710 + gzip\u00d77, normalized to 100'; + barHeader.title = 'Weighted score: baseline\u00d70.15 + json\u00d71 + db\u00d710 + upload\u00d710 + gzip\u00d77 + static\u00d72 + async-db\u00d710, normalized to 100'; barHeader.textContent = 'Score'; /* Insert mix legend header after Score */ var mixHeader = document.createElement('div'); @@ -1363,7 +1367,7 @@ barHeader.className = 'lb-mix-header'; barHeader.style.textAlign = 'right'; barHeader.style.fontWeight = '600'; - barHeader.title = 'Weighted score: baseline\u00d70.15 + json\u00d71 + db\u00d710 + upload\u00d710 + gzip\u00d77, normalized to 100'; + barHeader.title = 'Weighted score: baseline\u00d70.15 + json\u00d71 + db\u00d710 + upload\u00d710 + gzip\u00d77 + static\u00d72 + async-db\u00d710, normalized to 100'; barHeader.textContent = 'Score'; var mixHeader = document.createElement('div'); mixHeader.innerHTML = '
Request Mix
' + diff --git a/site/static/logs/mixed/16384/deno.log b/site/static/logs/mixed/16384/deno.log index f799050d..6af60ec2 100644 --- a/site/static/logs/mixed/16384/deno.log +++ b/site/static/logs/mixed/16384/deno.log @@ -1,6616 +1,4528 @@ [serve-worker-0 ] deno serve: Listening on http://0.0.0.0:8080/ with 128 threads -[serve-worker-114] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-1 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-126] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-100] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-98] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-112] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-30] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-5 ] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-2 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-57] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-38] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-39] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-37] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-30] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-40] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-44] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-86] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-110] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-73] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-101] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-112] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-101] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-110] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-92] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-11] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-42] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-69] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-73] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-109] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-73] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" +} +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" +} +[serve-worker-122] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" +} +[serve-worker-76] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-45] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-92] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-122] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-76] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } [serve-worker-92] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-100] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-100] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-4 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-45] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-95] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-44] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-76] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-100] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-100] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-11] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-100] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-4 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-74] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-69] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-76] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-44] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-76] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-44] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-49] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-7 ] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-5 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-60] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-95] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-29] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-60] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-60] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-92] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-74] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-5 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-8 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-29] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-29] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-8 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-74] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-74] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-29] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-8 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-29] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-29] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-5 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-117] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-92] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-89] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-50] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-2 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-3 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-12] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-33] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-33] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-37] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-37] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-73] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-72] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-76] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-37] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-61] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-61] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-111] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-36] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-29] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-51] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-16] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-103] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-49] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-39] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-90] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-17] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-17] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-112] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-32] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-6 ] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-65] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-85] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-33] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-43] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-0 ] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-11] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-48] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-60] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-60] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-119] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-46] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-22] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-71] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-101] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-90] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-123] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-70] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-27] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-75] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-76] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-20] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-22] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-90] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-90] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-90] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-27] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-27] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-36] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-20] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-121] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-119] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-119] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-33] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-33] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-62] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-96] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-75] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-14] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-97] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-76] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-57] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-52] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-52] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-114] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-112] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-36] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-51] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-75] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-0 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-79] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-79] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-107] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-107] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-27] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-107] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-14] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-27] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-27] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-36] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-75] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-83] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-83] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-27] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-103] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-27] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-51] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-51] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-51] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-83] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-83] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-34] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-83] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-75] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-75] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-95] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-80] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-116] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-96] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" +} +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-0 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-11] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-118] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-0 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-73] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-76] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-50] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-105] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-21] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } +[serve-worker-79] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-89] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} [serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-36] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-39] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-48] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-69] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-1 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-101] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-89] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-73] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-35] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-86] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-115] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-122] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } +[serve-worker-118] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} [serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-96] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-54] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-113] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-56] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-56] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-27] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-122] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-122] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-99] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-97] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-86] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-24] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-115] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-48] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-109] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-57] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-78] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-84] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-94] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-35] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-124] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-103] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-103] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-1 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-44] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-112] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-6 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-112] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-60] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-66] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-124] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-120] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-122] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-122] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-58] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-53] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-86] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-118] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-73] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-118] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-86] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-13] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-29] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-86] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-14] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-86] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-66] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-76] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-112] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-51] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-1 ] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-51] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-47] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-1 ] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-123] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-53] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-93] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-74] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-115] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-1 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-96] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" +[serve-worker-103] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" } -[serve-worker-101] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-35] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-21] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-35] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-29] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-76] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-0 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-35] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-100] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-120] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-14] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-59] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-79] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-99] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-113] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-76] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-45] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-109] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-96] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-24] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-58] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-9 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-53] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-9 ] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-48] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-37] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-6 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" +} +[serve-worker-58] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-53] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-40] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-76] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-83] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-47] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-22] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-29] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-115] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-52] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-96] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-113] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } [serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-2 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-76] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-1 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-83] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-25] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-43] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-83] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-4 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-111] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-124] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-29] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-79] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-86] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-79] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-28] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-59] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-117] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-14] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-86] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-102] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-85] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-7 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-105] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-7 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-5 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-5 ] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-116] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-73] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-110] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-95] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-5 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-124] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-38] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-124] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-38] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-124] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-43] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-73] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-72] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-124] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-76] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-76] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-95] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-22] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-79] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-53] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-116] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-117] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-32] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-12] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-28] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-76] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-35] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-76] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-68] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { + name: "Http" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-54] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-125] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-79] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-115] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-71] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-71] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-43] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-41] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-43] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-124] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-59] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-14] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-66] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-124] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-61] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-103] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-49] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-115] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-68] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-68] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-55] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-22] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-14] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-47] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-60] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-14] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-93] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-14] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-71] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-113] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-109] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-86] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-37] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-99] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-86] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-33] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-109] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-86] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-49] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-40] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-9 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-113] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-38] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-113] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-9 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-61] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-16] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-16] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-70] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-70] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-3 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-15] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-87] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-90] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-100] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-84] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-57] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-81] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-18] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-122] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-123] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-55] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-83] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-116] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-92] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-26] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-17] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-34] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-101] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-23] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-37] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-77] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-63] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-38] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-65] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-56] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-56] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-31] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-93] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-62] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-93] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-26] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-93] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-3 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-63] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-2 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-78] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-51] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-51] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-83] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-47] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-90] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-38] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-101] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-83] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-42] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-105] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-24] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-116] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-28] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-49] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-77] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-124] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-50] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-34] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-19] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-63] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-49] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-116] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } [serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-105] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-104] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-54] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-82] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-20] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-110] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-28] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-34] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-17] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-108] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-53] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-42] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-93] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-66] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-124] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { + name: "BadResource" +} +[serve-worker-116] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-44] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-66] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-2 ] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-77] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-77] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-77] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-116] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-44] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-45] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } +[serve-worker-50] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-84] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} [serve-worker-56] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-2 ] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-110] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-49] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-94] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-49] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-26] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-44] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-86] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-44] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-93] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-104] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-108] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-21] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-65] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-65] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-41] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-108] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-41] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-51] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-110] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-92] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-110] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-105] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-28] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-46] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-19] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-42] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-51] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-65] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-88] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-55] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-84] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-84] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-84] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-84] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "Http" +} +[serve-worker-105] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-28] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-17] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-99] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-92] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-105] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-92] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-17] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) +[serve-worker-45] BadResource: Cannot read body as underlying resource unavailable + at ext:deno_fetch/22_body.js:170:19 + at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" + name: "BadResource" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-41] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-17] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-104] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-78] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-49] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-104] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-104] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-10] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-45] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" +} +[serve-worker-49] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-41] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-41] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } diff --git a/site/static/logs/mixed/16384/django.log b/site/static/logs/mixed/16384/django.log index f5f1f5e5..9b57c6ce 100644 --- a/site/static/logs/mixed/16384/django.log +++ b/site/static/logs/mixed/16384/django.log @@ -1,262 +1,262 @@ -[2026-03-26 00:58:50 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 00:58:50 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 00:58:50 +0000] [1] [INFO] Using worker: sync -[2026-03-26 00:58:50 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 00:58:50 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 00:58:50 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 00:58:50 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 00:58:50 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 00:58:50 +0000] [12] [INFO] Booting worker with pid: 12 -[2026-03-26 00:58:50 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 00:58:50 +0000] [14] [INFO] Booting worker with pid: 14 -[2026-03-26 00:58:50 +0000] [15] [INFO] Booting worker with pid: 15 -[2026-03-26 00:58:50 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 00:58:50 +0000] [17] [INFO] Booting worker with pid: 17 -[2026-03-26 00:58:50 +0000] [18] [INFO] Booting worker with pid: 18 -[2026-03-26 00:58:50 +0000] [19] [INFO] Booting worker with pid: 19 -[2026-03-26 00:58:50 +0000] [20] [INFO] Booting worker with pid: 20 -[2026-03-26 00:58:51 +0000] [21] [INFO] Booting worker with pid: 21 -[2026-03-26 00:58:51 +0000] [22] [INFO] Booting worker with pid: 22 -[2026-03-26 00:58:51 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 00:58:51 +0000] [24] [INFO] Booting worker with pid: 24 -[2026-03-26 00:58:51 +0000] [25] [INFO] Booting worker with pid: 25 -[2026-03-26 00:58:51 +0000] [26] [INFO] Booting worker with pid: 26 -[2026-03-26 00:58:51 +0000] [27] [INFO] Booting worker with pid: 27 -[2026-03-26 00:58:51 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 00:58:51 +0000] [29] [INFO] Booting worker with pid: 29 -[2026-03-26 00:58:51 +0000] [30] [INFO] Booting worker with pid: 30 -[2026-03-26 00:58:51 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 00:58:51 +0000] [32] [INFO] Booting worker with pid: 32 -[2026-03-26 00:58:51 +0000] [33] [INFO] Booting worker with pid: 33 -[2026-03-26 00:58:51 +0000] [34] [INFO] Booting worker with pid: 34 -[2026-03-26 00:58:51 +0000] [35] [INFO] Booting worker with pid: 35 -[2026-03-26 00:58:51 +0000] [36] [INFO] Booting worker with pid: 36 -[2026-03-26 00:58:51 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 00:58:51 +0000] [38] [INFO] Booting worker with pid: 38 -[2026-03-26 00:58:51 +0000] [39] [INFO] Booting worker with pid: 39 -[2026-03-26 00:58:51 +0000] [40] [INFO] Booting worker with pid: 40 -[2026-03-26 00:58:51 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 00:58:52 +0000] [42] [INFO] Booting worker with pid: 42 -[2026-03-26 00:58:52 +0000] [43] [INFO] Booting worker with pid: 43 -[2026-03-26 00:58:52 +0000] [44] [INFO] Booting worker with pid: 44 -[2026-03-26 00:58:52 +0000] [45] [INFO] Booting worker with pid: 45 -[2026-03-26 00:58:52 +0000] [46] [INFO] Booting worker with pid: 46 -[2026-03-26 00:58:52 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 00:58:52 +0000] [48] [INFO] Booting worker with pid: 48 -[2026-03-26 00:58:52 +0000] [49] [INFO] Booting worker with pid: 49 -[2026-03-26 00:58:52 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 00:58:52 +0000] [51] [INFO] Booting worker with pid: 51 -[2026-03-26 00:58:52 +0000] [52] [INFO] Booting worker with pid: 52 -[2026-03-26 00:58:52 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 00:58:52 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 00:58:52 +0000] [55] [INFO] Booting worker with pid: 55 -[2026-03-26 00:58:52 +0000] [56] [INFO] Booting worker with pid: 56 -[2026-03-26 00:58:52 +0000] [57] [INFO] Booting worker with pid: 57 -[2026-03-26 00:58:52 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 00:58:52 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 00:58:52 +0000] [60] [INFO] Booting worker with pid: 60 -[2026-03-26 00:58:52 +0000] [61] [INFO] Booting worker with pid: 61 -[2026-03-26 00:58:52 +0000] [62] [INFO] Booting worker with pid: 62 -[2026-03-26 00:58:53 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 00:58:53 +0000] [64] [INFO] Booting worker with pid: 64 -[2026-03-26 00:58:53 +0000] [65] [INFO] Booting worker with pid: 65 -[2026-03-26 00:58:53 +0000] [66] [INFO] Booting worker with pid: 66 -[2026-03-26 00:58:53 +0000] [67] [INFO] Booting worker with pid: 67 -[2026-03-26 00:58:53 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 00:58:53 +0000] [69] [INFO] Booting worker with pid: 69 -[2026-03-26 00:58:53 +0000] [70] [INFO] Booting worker with pid: 70 -[2026-03-26 00:58:53 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 00:58:53 +0000] [72] [INFO] Booting worker with pid: 72 -[2026-03-26 00:58:53 +0000] [73] [INFO] Booting worker with pid: 73 -[2026-03-26 00:58:53 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 00:58:53 +0000] [75] [INFO] Booting worker with pid: 75 -[2026-03-26 00:58:53 +0000] [76] [INFO] Booting worker with pid: 76 -[2026-03-26 00:58:53 +0000] [77] [INFO] Booting worker with pid: 77 -[2026-03-26 00:58:53 +0000] [78] [INFO] Booting worker with pid: 78 -[2026-03-26 00:58:53 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 00:58:53 +0000] [80] [INFO] Booting worker with pid: 80 -[2026-03-26 00:58:53 +0000] [81] [INFO] Booting worker with pid: 81 -[2026-03-26 00:58:53 +0000] [82] [INFO] Booting worker with pid: 82 -[2026-03-26 00:58:53 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 00:58:54 +0000] [84] [INFO] Booting worker with pid: 84 -[2026-03-26 00:58:54 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 00:58:54 +0000] [86] [INFO] Booting worker with pid: 86 -[2026-03-26 00:58:54 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 00:58:54 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 00:58:54 +0000] [89] [INFO] Booting worker with pid: 89 -[2026-03-26 00:58:54 +0000] [90] [INFO] Booting worker with pid: 90 -[2026-03-26 00:58:54 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 00:58:54 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 00:58:54 +0000] [93] [INFO] Booting worker with pid: 93 -[2026-03-26 00:58:54 +0000] [94] [INFO] Booting worker with pid: 94 -[2026-03-26 00:58:54 +0000] [95] [INFO] Booting worker with pid: 95 -[2026-03-26 00:58:54 +0000] [96] [INFO] Booting worker with pid: 96 -[2026-03-26 00:58:54 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 00:58:54 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 00:58:54 +0000] [99] [INFO] Booting worker with pid: 99 -[2026-03-26 00:58:54 +0000] [100] [INFO] Booting worker with pid: 100 -[2026-03-26 00:58:54 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 00:58:54 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 00:58:54 +0000] [103] [INFO] Booting worker with pid: 103 -[2026-03-26 00:58:54 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 00:58:55 +0000] [105] [INFO] Booting worker with pid: 105 -[2026-03-26 00:58:55 +0000] [106] [INFO] Booting worker with pid: 106 -[2026-03-26 00:58:55 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 00:58:55 +0000] [108] [INFO] Booting worker with pid: 108 -[2026-03-26 00:58:55 +0000] [109] [INFO] Booting worker with pid: 109 -[2026-03-26 00:58:55 +0000] [110] [INFO] Booting worker with pid: 110 -[2026-03-26 00:58:55 +0000] [111] [INFO] Booting worker with pid: 111 -[2026-03-26 00:58:55 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 00:58:55 +0000] [113] [INFO] Booting worker with pid: 113 -[2026-03-26 00:58:55 +0000] [114] [INFO] Booting worker with pid: 114 -[2026-03-26 00:58:55 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 00:58:55 +0000] [116] [INFO] Booting worker with pid: 116 -[2026-03-26 00:58:55 +0000] [117] [INFO] Booting worker with pid: 117 -[2026-03-26 00:58:55 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 00:58:55 +0000] [119] [INFO] Booting worker with pid: 119 -[2026-03-26 00:58:55 +0000] [120] [INFO] Booting worker with pid: 120 -[2026-03-26 00:58:55 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 00:58:55 +0000] [122] [INFO] Booting worker with pid: 122 -[2026-03-26 00:58:55 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 00:58:55 +0000] [124] [INFO] Booting worker with pid: 124 -[2026-03-26 00:58:55 +0000] [125] [INFO] Booting worker with pid: 125 -[2026-03-26 00:58:55 +0000] [126] [INFO] Booting worker with pid: 126 -[2026-03-26 00:58:55 +0000] [127] [INFO] Booting worker with pid: 127 -[2026-03-26 00:58:55 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 00:58:55 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 00:58:56 +0000] [130] [INFO] Booting worker with pid: 130 -[2026-03-26 00:58:56 +0000] [131] [INFO] Booting worker with pid: 131 -[2026-03-26 00:58:56 +0000] [132] [INFO] Booting worker with pid: 132 -[2026-03-26 00:58:56 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 00:58:56 +0000] [134] [INFO] Booting worker with pid: 134 -[2026-03-26 00:58:56 +0000] [135] [INFO] Booting worker with pid: 135 -[2026-03-26 00:58:56 +0000] [136] [INFO] Booting worker with pid: 136 -[2026-03-26 00:58:56 +0000] [137] [INFO] Booting worker with pid: 137 -[2026-03-26 00:58:56 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 00:58:56 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 00:58:56 +0000] [140] [INFO] Booting worker with pid: 140 -[2026-03-26 00:58:56 +0000] [141] [INFO] Booting worker with pid: 141 -[2026-03-26 00:58:56 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 00:58:56 +0000] [143] [INFO] Booting worker with pid: 143 -[2026-03-26 00:58:56 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 00:58:56 +0000] [145] [INFO] Booting worker with pid: 145 -[2026-03-26 00:58:56 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 00:58:57 +0000] [147] [INFO] Booting worker with pid: 147 -[2026-03-26 00:58:57 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 00:58:57 +0000] [149] [INFO] Booting worker with pid: 149 -[2026-03-26 00:58:57 +0000] [150] [INFO] Booting worker with pid: 150 -[2026-03-26 00:58:57 +0000] [151] [INFO] Booting worker with pid: 151 -[2026-03-26 00:58:57 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 00:58:57 +0000] [153] [INFO] Booting worker with pid: 153 -[2026-03-26 00:58:57 +0000] [154] [INFO] Booting worker with pid: 154 -[2026-03-26 00:58:57 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 00:58:57 +0000] [156] [INFO] Booting worker with pid: 156 -[2026-03-26 00:58:57 +0000] [157] [INFO] Booting worker with pid: 157 -[2026-03-26 00:58:57 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 00:58:57 +0000] [159] [INFO] Booting worker with pid: 159 -[2026-03-26 00:58:57 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 00:58:57 +0000] [161] [INFO] Booting worker with pid: 161 -[2026-03-26 00:58:57 +0000] [162] [INFO] Booting worker with pid: 162 -[2026-03-26 00:58:57 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 00:58:57 +0000] [164] [INFO] Booting worker with pid: 164 -[2026-03-26 00:58:57 +0000] [165] [INFO] Booting worker with pid: 165 -[2026-03-26 00:58:57 +0000] [166] [INFO] Booting worker with pid: 166 -[2026-03-26 00:58:57 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 00:58:58 +0000] [168] [INFO] Booting worker with pid: 168 -[2026-03-26 00:58:58 +0000] [169] [INFO] Booting worker with pid: 169 -[2026-03-26 00:58:58 +0000] [170] [INFO] Booting worker with pid: 170 -[2026-03-26 00:58:58 +0000] [171] [INFO] Booting worker with pid: 171 -[2026-03-26 00:58:58 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 00:58:58 +0000] [173] [INFO] Booting worker with pid: 173 -[2026-03-26 00:58:58 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 00:58:58 +0000] [175] [INFO] Booting worker with pid: 175 -[2026-03-26 00:58:58 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 00:58:58 +0000] [177] [INFO] Booting worker with pid: 177 -[2026-03-26 00:58:58 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 00:58:58 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 00:58:58 +0000] [180] [INFO] Booting worker with pid: 180 -[2026-03-26 00:58:58 +0000] [181] [INFO] Booting worker with pid: 181 -[2026-03-26 00:58:58 +0000] [182] [INFO] Booting worker with pid: 182 -[2026-03-26 00:58:58 +0000] [183] [INFO] Booting worker with pid: 183 -[2026-03-26 00:58:58 +0000] [184] [INFO] Booting worker with pid: 184 -[2026-03-26 00:58:59 +0000] [185] [INFO] Booting worker with pid: 185 -[2026-03-26 00:58:59 +0000] [186] [INFO] Booting worker with pid: 186 -[2026-03-26 00:58:59 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 00:58:59 +0000] [188] [INFO] Booting worker with pid: 188 -[2026-03-26 00:58:59 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 00:58:59 +0000] [190] [INFO] Booting worker with pid: 190 -[2026-03-26 00:58:59 +0000] [191] [INFO] Booting worker with pid: 191 -[2026-03-26 00:58:59 +0000] [192] [INFO] Booting worker with pid: 192 -[2026-03-26 00:58:59 +0000] [193] [INFO] Booting worker with pid: 193 -[2026-03-26 00:58:59 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 00:58:59 +0000] [195] [INFO] Booting worker with pid: 195 -[2026-03-26 00:58:59 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 00:58:59 +0000] [197] [INFO] Booting worker with pid: 197 -[2026-03-26 00:58:59 +0000] [198] [INFO] Booting worker with pid: 198 -[2026-03-26 00:58:59 +0000] [199] [INFO] Booting worker with pid: 199 -[2026-03-26 00:58:59 +0000] [200] [INFO] Booting worker with pid: 200 -[2026-03-26 00:58:59 +0000] [201] [INFO] Booting worker with pid: 201 -[2026-03-26 00:58:59 +0000] [202] [INFO] Booting worker with pid: 202 -[2026-03-26 00:59:00 +0000] [203] [INFO] Booting worker with pid: 203 -[2026-03-26 00:59:00 +0000] [204] [INFO] Booting worker with pid: 204 -[2026-03-26 00:59:00 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 00:59:00 +0000] [206] [INFO] Booting worker with pid: 206 -[2026-03-26 00:59:00 +0000] [207] [INFO] Booting worker with pid: 207 -[2026-03-26 00:59:00 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 00:59:00 +0000] [209] [INFO] Booting worker with pid: 209 -[2026-03-26 00:59:00 +0000] [210] [INFO] Booting worker with pid: 210 -[2026-03-26 00:59:00 +0000] [211] [INFO] Booting worker with pid: 211 -[2026-03-26 00:59:00 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 00:59:00 +0000] [213] [INFO] Booting worker with pid: 213 -[2026-03-26 00:59:00 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 00:59:00 +0000] [215] [INFO] Booting worker with pid: 215 -[2026-03-26 00:59:00 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 00:59:00 +0000] [217] [INFO] Booting worker with pid: 217 -[2026-03-26 00:59:00 +0000] [218] [INFO] Booting worker with pid: 218 -[2026-03-26 00:59:00 +0000] [219] [INFO] Booting worker with pid: 219 -[2026-03-26 00:59:00 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 00:59:01 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 00:59:01 +0000] [222] [INFO] Booting worker with pid: 222 -[2026-03-26 00:59:01 +0000] [223] [INFO] Booting worker with pid: 223 -[2026-03-26 00:59:01 +0000] [224] [INFO] Booting worker with pid: 224 -[2026-03-26 00:59:01 +0000] [225] [INFO] Booting worker with pid: 225 -[2026-03-26 00:59:01 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 00:59:01 +0000] [227] [INFO] Booting worker with pid: 227 -[2026-03-26 00:59:01 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 00:59:01 +0000] [229] [INFO] Booting worker with pid: 229 -[2026-03-26 00:59:01 +0000] [230] [INFO] Booting worker with pid: 230 -[2026-03-26 00:59:01 +0000] [231] [INFO] Booting worker with pid: 231 -[2026-03-26 00:59:01 +0000] [232] [INFO] Booting worker with pid: 232 -[2026-03-26 00:59:01 +0000] [233] [INFO] Booting worker with pid: 233 -[2026-03-26 00:59:01 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 00:59:01 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 00:59:01 +0000] [236] [INFO] Booting worker with pid: 236 -[2026-03-26 00:59:01 +0000] [237] [INFO] Booting worker with pid: 237 -[2026-03-26 00:59:01 +0000] [238] [INFO] Booting worker with pid: 238 -[2026-03-26 00:59:01 +0000] [239] [INFO] Booting worker with pid: 239 -[2026-03-26 00:59:01 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 00:59:01 +0000] [241] [INFO] Booting worker with pid: 241 -[2026-03-26 00:59:02 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 00:59:02 +0000] [243] [INFO] Booting worker with pid: 243 -[2026-03-26 00:59:02 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 00:59:02 +0000] [245] [INFO] Booting worker with pid: 245 -[2026-03-26 00:59:02 +0000] [246] [INFO] Booting worker with pid: 246 -[2026-03-26 00:59:02 +0000] [247] [INFO] Booting worker with pid: 247 -[2026-03-26 00:59:02 +0000] [248] [INFO] Booting worker with pid: 248 -[2026-03-26 00:59:02 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 00:59:02 +0000] [250] [INFO] Booting worker with pid: 250 -[2026-03-26 00:59:02 +0000] [251] [INFO] Booting worker with pid: 251 -[2026-03-26 00:59:02 +0000] [252] [INFO] Booting worker with pid: 252 -[2026-03-26 00:59:02 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 00:59:02 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 00:59:02 +0000] [255] [INFO] Booting worker with pid: 255 -[2026-03-26 00:59:02 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 00:59:02 +0000] [257] [INFO] Booting worker with pid: 257 -[2026-03-26 00:59:02 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 00:59:02 +0000] [259] [INFO] Booting worker with pid: 259 -[2026-03-26 00:59:02 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 00:59:03 +0000] [261] [INFO] Booting worker with pid: 261 -[2026-03-26 00:59:03 +0000] [262] [INFO] Booting worker with pid: 262 +[2026-03-29 01:34:08 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 01:34:08 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 01:34:08 +0000] [1] [INFO] Using worker: sync +[2026-03-29 01:34:08 +0000] [7] [INFO] Booting worker with pid: 7 +[2026-03-29 01:34:08 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 01:34:08 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 01:34:08 +0000] [10] [INFO] Booting worker with pid: 10 +[2026-03-29 01:34:08 +0000] [11] [INFO] Booting worker with pid: 11 +[2026-03-29 01:34:08 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 01:34:08 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 01:34:08 +0000] [14] [INFO] Booting worker with pid: 14 +[2026-03-29 01:34:08 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 01:34:08 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 01:34:08 +0000] [17] [INFO] Booting worker with pid: 17 +[2026-03-29 01:34:08 +0000] [18] [INFO] Booting worker with pid: 18 +[2026-03-29 01:34:08 +0000] [19] [INFO] Booting worker with pid: 19 +[2026-03-29 01:34:08 +0000] [20] [INFO] Booting worker with pid: 20 +[2026-03-29 01:34:08 +0000] [21] [INFO] Booting worker with pid: 21 +[2026-03-29 01:34:09 +0000] [22] [INFO] Booting worker with pid: 22 +[2026-03-29 01:34:09 +0000] [23] [INFO] Booting worker with pid: 23 +[2026-03-29 01:34:09 +0000] [24] [INFO] Booting worker with pid: 24 +[2026-03-29 01:34:09 +0000] [25] [INFO] Booting worker with pid: 25 +[2026-03-29 01:34:09 +0000] [26] [INFO] Booting worker with pid: 26 +[2026-03-29 01:34:09 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 01:34:09 +0000] [28] [INFO] Booting worker with pid: 28 +[2026-03-29 01:34:09 +0000] [29] [INFO] Booting worker with pid: 29 +[2026-03-29 01:34:09 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 01:34:09 +0000] [31] [INFO] Booting worker with pid: 31 +[2026-03-29 01:34:09 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 01:34:09 +0000] [33] [INFO] Booting worker with pid: 33 +[2026-03-29 01:34:09 +0000] [34] [INFO] Booting worker with pid: 34 +[2026-03-29 01:34:09 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 01:34:09 +0000] [36] [INFO] Booting worker with pid: 36 +[2026-03-29 01:34:09 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 01:34:09 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 01:34:09 +0000] [39] [INFO] Booting worker with pid: 39 +[2026-03-29 01:34:09 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 01:34:10 +0000] [41] [INFO] Booting worker with pid: 41 +[2026-03-29 01:34:10 +0000] [42] [INFO] Booting worker with pid: 42 +[2026-03-29 01:34:10 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 01:34:10 +0000] [44] [INFO] Booting worker with pid: 44 +[2026-03-29 01:34:10 +0000] [45] [INFO] Booting worker with pid: 45 +[2026-03-29 01:34:10 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 01:34:10 +0000] [47] [INFO] Booting worker with pid: 47 +[2026-03-29 01:34:10 +0000] [48] [INFO] Booting worker with pid: 48 +[2026-03-29 01:34:10 +0000] [49] [INFO] Booting worker with pid: 49 +[2026-03-29 01:34:10 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 01:34:10 +0000] [51] [INFO] Booting worker with pid: 51 +[2026-03-29 01:34:10 +0000] [52] [INFO] Booting worker with pid: 52 +[2026-03-29 01:34:10 +0000] [53] [INFO] Booting worker with pid: 53 +[2026-03-29 01:34:10 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 01:34:10 +0000] [55] [INFO] Booting worker with pid: 55 +[2026-03-29 01:34:10 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 01:34:10 +0000] [57] [INFO] Booting worker with pid: 57 +[2026-03-29 01:34:10 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 01:34:10 +0000] [59] [INFO] Booting worker with pid: 59 +[2026-03-29 01:34:11 +0000] [60] [INFO] Booting worker with pid: 60 +[2026-03-29 01:34:11 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 01:34:11 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 01:34:11 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 01:34:11 +0000] [64] [INFO] Booting worker with pid: 64 +[2026-03-29 01:34:11 +0000] [65] [INFO] Booting worker with pid: 65 +[2026-03-29 01:34:11 +0000] [66] [INFO] Booting worker with pid: 66 +[2026-03-29 01:34:11 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 01:34:11 +0000] [68] [INFO] Booting worker with pid: 68 +[2026-03-29 01:34:11 +0000] [69] [INFO] Booting worker with pid: 69 +[2026-03-29 01:34:11 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 01:34:11 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 01:34:11 +0000] [72] [INFO] Booting worker with pid: 72 +[2026-03-29 01:34:11 +0000] [73] [INFO] Booting worker with pid: 73 +[2026-03-29 01:34:11 +0000] [74] [INFO] Booting worker with pid: 74 +[2026-03-29 01:34:11 +0000] [75] [INFO] Booting worker with pid: 75 +[2026-03-29 01:34:11 +0000] [76] [INFO] Booting worker with pid: 76 +[2026-03-29 01:34:11 +0000] [77] [INFO] Booting worker with pid: 77 +[2026-03-29 01:34:11 +0000] [78] [INFO] Booting worker with pid: 78 +[2026-03-29 01:34:12 +0000] [79] [INFO] Booting worker with pid: 79 +[2026-03-29 01:34:12 +0000] [80] [INFO] Booting worker with pid: 80 +[2026-03-29 01:34:12 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 01:34:12 +0000] [82] [INFO] Booting worker with pid: 82 +[2026-03-29 01:34:12 +0000] [83] [INFO] Booting worker with pid: 83 +[2026-03-29 01:34:12 +0000] [84] [INFO] Booting worker with pid: 84 +[2026-03-29 01:34:12 +0000] [85] [INFO] Booting worker with pid: 85 +[2026-03-29 01:34:12 +0000] [86] [INFO] Booting worker with pid: 86 +[2026-03-29 01:34:12 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 01:34:12 +0000] [88] [INFO] Booting worker with pid: 88 +[2026-03-29 01:34:12 +0000] [89] [INFO] Booting worker with pid: 89 +[2026-03-29 01:34:12 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 01:34:12 +0000] [91] [INFO] Booting worker with pid: 91 +[2026-03-29 01:34:12 +0000] [92] [INFO] Booting worker with pid: 92 +[2026-03-29 01:34:12 +0000] [93] [INFO] Booting worker with pid: 93 +[2026-03-29 01:34:12 +0000] [94] [INFO] Booting worker with pid: 94 +[2026-03-29 01:34:12 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 01:34:13 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 01:34:13 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 01:34:13 +0000] [98] [INFO] Booting worker with pid: 98 +[2026-03-29 01:34:13 +0000] [99] [INFO] Booting worker with pid: 99 +[2026-03-29 01:34:13 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 01:34:13 +0000] [101] [INFO] Booting worker with pid: 101 +[2026-03-29 01:34:13 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 01:34:13 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 01:34:13 +0000] [104] [INFO] Booting worker with pid: 104 +[2026-03-29 01:34:13 +0000] [105] [INFO] Booting worker with pid: 105 +[2026-03-29 01:34:13 +0000] [106] [INFO] Booting worker with pid: 106 +[2026-03-29 01:34:13 +0000] [107] [INFO] Booting worker with pid: 107 +[2026-03-29 01:34:13 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 01:34:13 +0000] [109] [INFO] Booting worker with pid: 109 +[2026-03-29 01:34:13 +0000] [110] [INFO] Booting worker with pid: 110 +[2026-03-29 01:34:13 +0000] [111] [INFO] Booting worker with pid: 111 +[2026-03-29 01:34:13 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 01:34:13 +0000] [113] [INFO] Booting worker with pid: 113 +[2026-03-29 01:34:13 +0000] [114] [INFO] Booting worker with pid: 114 +[2026-03-29 01:34:14 +0000] [115] [INFO] Booting worker with pid: 115 +[2026-03-29 01:34:14 +0000] [116] [INFO] Booting worker with pid: 116 +[2026-03-29 01:34:14 +0000] [117] [INFO] Booting worker with pid: 117 +[2026-03-29 01:34:14 +0000] [118] [INFO] Booting worker with pid: 118 +[2026-03-29 01:34:14 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 01:34:14 +0000] [120] [INFO] Booting worker with pid: 120 +[2026-03-29 01:34:14 +0000] [121] [INFO] Booting worker with pid: 121 +[2026-03-29 01:34:14 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 01:34:14 +0000] [123] [INFO] Booting worker with pid: 123 +[2026-03-29 01:34:14 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 01:34:14 +0000] [125] [INFO] Booting worker with pid: 125 +[2026-03-29 01:34:14 +0000] [126] [INFO] Booting worker with pid: 126 +[2026-03-29 01:34:14 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 01:34:14 +0000] [128] [INFO] Booting worker with pid: 128 +[2026-03-29 01:34:14 +0000] [129] [INFO] Booting worker with pid: 129 +[2026-03-29 01:34:14 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 01:34:14 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 01:34:14 +0000] [132] [INFO] Booting worker with pid: 132 +[2026-03-29 01:34:14 +0000] [133] [INFO] Booting worker with pid: 133 +[2026-03-29 01:34:14 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 01:34:15 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 01:34:15 +0000] [136] [INFO] Booting worker with pid: 136 +[2026-03-29 01:34:15 +0000] [137] [INFO] Booting worker with pid: 137 +[2026-03-29 01:34:15 +0000] [138] [INFO] Booting worker with pid: 138 +[2026-03-29 01:34:15 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 01:34:15 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 01:34:15 +0000] [141] [INFO] Booting worker with pid: 141 +[2026-03-29 01:34:15 +0000] [142] [INFO] Booting worker with pid: 142 +[2026-03-29 01:34:15 +0000] [143] [INFO] Booting worker with pid: 143 +[2026-03-29 01:34:15 +0000] [144] [INFO] Booting worker with pid: 144 +[2026-03-29 01:34:15 +0000] [145] [INFO] Booting worker with pid: 145 +[2026-03-29 01:34:15 +0000] [146] [INFO] Booting worker with pid: 146 +[2026-03-29 01:34:15 +0000] [147] [INFO] Booting worker with pid: 147 +[2026-03-29 01:34:15 +0000] [148] [INFO] Booting worker with pid: 148 +[2026-03-29 01:34:15 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 01:34:15 +0000] [150] [INFO] Booting worker with pid: 150 +[2026-03-29 01:34:15 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 01:34:15 +0000] [152] [INFO] Booting worker with pid: 152 +[2026-03-29 01:34:16 +0000] [153] [INFO] Booting worker with pid: 153 +[2026-03-29 01:34:16 +0000] [154] [INFO] Booting worker with pid: 154 +[2026-03-29 01:34:16 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 01:34:16 +0000] [156] [INFO] Booting worker with pid: 156 +[2026-03-29 01:34:16 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 01:34:16 +0000] [158] [INFO] Booting worker with pid: 158 +[2026-03-29 01:34:16 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 01:34:16 +0000] [160] [INFO] Booting worker with pid: 160 +[2026-03-29 01:34:16 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 01:34:16 +0000] [162] [INFO] Booting worker with pid: 162 +[2026-03-29 01:34:16 +0000] [163] [INFO] Booting worker with pid: 163 +[2026-03-29 01:34:16 +0000] [164] [INFO] Booting worker with pid: 164 +[2026-03-29 01:34:16 +0000] [165] [INFO] Booting worker with pid: 165 +[2026-03-29 01:34:16 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 01:34:16 +0000] [167] [INFO] Booting worker with pid: 167 +[2026-03-29 01:34:16 +0000] [168] [INFO] Booting worker with pid: 168 +[2026-03-29 01:34:17 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 01:34:17 +0000] [170] [INFO] Booting worker with pid: 170 +[2026-03-29 01:34:17 +0000] [171] [INFO] Booting worker with pid: 171 +[2026-03-29 01:34:17 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 01:34:17 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 01:34:17 +0000] [174] [INFO] Booting worker with pid: 174 +[2026-03-29 01:34:17 +0000] [175] [INFO] Booting worker with pid: 175 +[2026-03-29 01:34:17 +0000] [176] [INFO] Booting worker with pid: 176 +[2026-03-29 01:34:17 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 01:34:17 +0000] [178] [INFO] Booting worker with pid: 178 +[2026-03-29 01:34:17 +0000] [179] [INFO] Booting worker with pid: 179 +[2026-03-29 01:34:17 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 01:34:17 +0000] [181] [INFO] Booting worker with pid: 181 +[2026-03-29 01:34:18 +0000] [182] [INFO] Booting worker with pid: 182 +[2026-03-29 01:34:18 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 01:34:18 +0000] [184] [INFO] Booting worker with pid: 184 +[2026-03-29 01:34:18 +0000] [185] [INFO] Booting worker with pid: 185 +[2026-03-29 01:34:18 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 01:34:18 +0000] [187] [INFO] Booting worker with pid: 187 +[2026-03-29 01:34:18 +0000] [188] [INFO] Booting worker with pid: 188 +[2026-03-29 01:34:18 +0000] [189] [INFO] Booting worker with pid: 189 +[2026-03-29 01:34:18 +0000] [190] [INFO] Booting worker with pid: 190 +[2026-03-29 01:34:18 +0000] [191] [INFO] Booting worker with pid: 191 +[2026-03-29 01:34:18 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 01:34:18 +0000] [193] [INFO] Booting worker with pid: 193 +[2026-03-29 01:34:18 +0000] [194] [INFO] Booting worker with pid: 194 +[2026-03-29 01:34:18 +0000] [195] [INFO] Booting worker with pid: 195 +[2026-03-29 01:34:18 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 01:34:18 +0000] [197] [INFO] Booting worker with pid: 197 +[2026-03-29 01:34:18 +0000] [198] [INFO] Booting worker with pid: 198 +[2026-03-29 01:34:18 +0000] [199] [INFO] Booting worker with pid: 199 +[2026-03-29 01:34:19 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 01:34:19 +0000] [201] [INFO] Booting worker with pid: 201 +[2026-03-29 01:34:19 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 01:34:19 +0000] [203] [INFO] Booting worker with pid: 203 +[2026-03-29 01:34:19 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 01:34:19 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 01:34:19 +0000] [206] [INFO] Booting worker with pid: 206 +[2026-03-29 01:34:19 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 01:34:19 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 01:34:19 +0000] [209] [INFO] Booting worker with pid: 209 +[2026-03-29 01:34:19 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 01:34:19 +0000] [211] [INFO] Booting worker with pid: 211 +[2026-03-29 01:34:19 +0000] [212] [INFO] Booting worker with pid: 212 +[2026-03-29 01:34:19 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 01:34:19 +0000] [214] [INFO] Booting worker with pid: 214 +[2026-03-29 01:34:19 +0000] [215] [INFO] Booting worker with pid: 215 +[2026-03-29 01:34:19 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 01:34:19 +0000] [217] [INFO] Booting worker with pid: 217 +[2026-03-29 01:34:19 +0000] [218] [INFO] Booting worker with pid: 218 +[2026-03-29 01:34:19 +0000] [219] [INFO] Booting worker with pid: 219 +[2026-03-29 01:34:19 +0000] [220] [INFO] Booting worker with pid: 220 +[2026-03-29 01:34:20 +0000] [221] [INFO] Booting worker with pid: 221 +[2026-03-29 01:34:20 +0000] [222] [INFO] Booting worker with pid: 222 +[2026-03-29 01:34:20 +0000] [223] [INFO] Booting worker with pid: 223 +[2026-03-29 01:34:20 +0000] [224] [INFO] Booting worker with pid: 224 +[2026-03-29 01:34:20 +0000] [225] [INFO] Booting worker with pid: 225 +[2026-03-29 01:34:20 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 01:34:20 +0000] [227] [INFO] Booting worker with pid: 227 +[2026-03-29 01:34:20 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 01:34:20 +0000] [229] [INFO] Booting worker with pid: 229 +[2026-03-29 01:34:20 +0000] [230] [INFO] Booting worker with pid: 230 +[2026-03-29 01:34:20 +0000] [231] [INFO] Booting worker with pid: 231 +[2026-03-29 01:34:20 +0000] [232] [INFO] Booting worker with pid: 232 +[2026-03-29 01:34:20 +0000] [233] [INFO] Booting worker with pid: 233 +[2026-03-29 01:34:20 +0000] [234] [INFO] Booting worker with pid: 234 +[2026-03-29 01:34:20 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 01:34:20 +0000] [236] [INFO] Booting worker with pid: 236 +[2026-03-29 01:34:20 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 01:34:21 +0000] [238] [INFO] Booting worker with pid: 238 +[2026-03-29 01:34:21 +0000] [239] [INFO] Booting worker with pid: 239 +[2026-03-29 01:34:21 +0000] [240] [INFO] Booting worker with pid: 240 +[2026-03-29 01:34:21 +0000] [241] [INFO] Booting worker with pid: 241 +[2026-03-29 01:34:21 +0000] [242] [INFO] Booting worker with pid: 242 +[2026-03-29 01:34:21 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 01:34:21 +0000] [244] [INFO] Booting worker with pid: 244 +[2026-03-29 01:34:21 +0000] [245] [INFO] Booting worker with pid: 245 +[2026-03-29 01:34:21 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 01:34:21 +0000] [247] [INFO] Booting worker with pid: 247 +[2026-03-29 01:34:21 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 01:34:21 +0000] [249] [INFO] Booting worker with pid: 249 +[2026-03-29 01:34:21 +0000] [250] [INFO] Booting worker with pid: 250 +[2026-03-29 01:34:21 +0000] [251] [INFO] Booting worker with pid: 251 +[2026-03-29 01:34:21 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 01:34:22 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 01:34:22 +0000] [254] [INFO] Booting worker with pid: 254 +[2026-03-29 01:34:22 +0000] [255] [INFO] Booting worker with pid: 255 +[2026-03-29 01:34:22 +0000] [256] [INFO] Booting worker with pid: 256 +[2026-03-29 01:34:22 +0000] [257] [INFO] Booting worker with pid: 257 +[2026-03-29 01:34:22 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 01:34:22 +0000] [259] [INFO] Booting worker with pid: 259 +[2026-03-29 01:34:22 +0000] [260] [INFO] Booting worker with pid: 260 +[2026-03-29 01:34:22 +0000] [261] [INFO] Booting worker with pid: 261 +[2026-03-29 01:34:22 +0000] [262] [INFO] Booting worker with pid: 262 Internal Server Error: /upload Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner @@ -265,7 +265,7 @@ Traceback (most recent call last): response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint + File "/app/views.py", line 221, in upload_endpoint chunk = stream.read(min(65536, remaining)) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) @@ -285,7 +285,7 @@ Traceback (most recent call last): response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint + File "/app/views.py", line 221, in upload_endpoint chunk = stream.read(min(65536, remaining)) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) @@ -305,7 +305,7 @@ Traceback (most recent call last): response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint + File "/app/views.py", line 221, in upload_endpoint chunk = stream.read(min(65536, remaining)) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) @@ -325,7 +325,7 @@ Traceback (most recent call last): response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint + File "/app/views.py", line 221, in upload_endpoint chunk = stream.read(min(65536, remaining)) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) @@ -345,7 +345,7 @@ Traceback (most recent call last): response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint + File "/app/views.py", line 221, in upload_endpoint chunk = stream.read(min(65536, remaining)) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) @@ -365,7 +365,107 @@ Traceback (most recent call last): response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint + File "/app/views.py", line 221, in upload_endpoint + chunk = stream.read(min(65536, remaining)) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +Internal Server Error: /upload +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner + return func(request, *args, **kwargs) + File "/app/views.py", line 221, in upload_endpoint + chunk = stream.read(min(65536, remaining)) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +Internal Server Error: /upload +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner + return func(request, *args, **kwargs) + File "/app/views.py", line 221, in upload_endpoint + chunk = stream.read(min(65536, remaining)) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +Internal Server Error: /upload +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner + return func(request, *args, **kwargs) + File "/app/views.py", line 221, in upload_endpoint + chunk = stream.read(min(65536, remaining)) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +Internal Server Error: /upload +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner + return func(request, *args, **kwargs) + File "/app/views.py", line 221, in upload_endpoint + chunk = stream.read(min(65536, remaining)) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +Internal Server Error: /upload +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner + response = get_response(request) + File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner + return func(request, *args, **kwargs) + File "/app/views.py", line 221, in upload_endpoint chunk = stream.read(min(65536, remaining)) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) diff --git a/site/static/logs/mixed/16384/fastapi.log b/site/static/logs/mixed/16384/fastapi.log index 37c75e54..a4fc03cc 100644 --- a/site/static/logs/mixed/16384/fastapi.log +++ b/site/static/logs/mixed/16384/fastapi.log @@ -1,1007 +1,1031 @@ -[2026-03-26 01:09:54 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 01:09:54 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 01:09:54 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker -[2026-03-26 01:09:54 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 01:09:54 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 01:09:54 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 01:09:54 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 01:09:54 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 01:09:54 +0000] [12] [INFO] Booting worker with pid: 12 -[2026-03-26 01:09:54 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 01:09:54 +0000] [7] [INFO] Started server process [7] -[2026-03-26 01:09:54 +0000] [7] [INFO] Waiting for application startup. -[2026-03-26 01:09:54 +0000] [7] [INFO] Application startup complete. -[2026-03-26 01:09:54 +0000] [8] [INFO] Started server process [8] -[2026-03-26 01:09:54 +0000] [8] [INFO] Waiting for application startup. -[2026-03-26 01:09:54 +0000] [8] [INFO] Application startup complete. -[2026-03-26 01:09:54 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 01:09:54 +0000] [17] [INFO] Booting worker with pid: 17 -[2026-03-26 01:09:54 +0000] [9] [INFO] Started server process [9] -[2026-03-26 01:09:54 +0000] [9] [INFO] Waiting for application startup. -[2026-03-26 01:09:54 +0000] [9] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [19] [INFO] Booting worker with pid: 19 -[2026-03-26 01:09:55 +0000] [10] [INFO] Started server process [10] -[2026-03-26 01:09:55 +0000] [10] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [10] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [11] [INFO] Started server process [11] -[2026-03-26 01:09:55 +0000] [11] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [11] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [22] [INFO] Booting worker with pid: 22 -[2026-03-26 01:09:55 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 01:09:55 +0000] [24] [INFO] Booting worker with pid: 24 -[2026-03-26 01:09:55 +0000] [12] [INFO] Started server process [12] -[2026-03-26 01:09:55 +0000] [12] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [12] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [13] [INFO] Started server process [13] -[2026-03-26 01:09:55 +0000] [13] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [13] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [16] [INFO] Started server process [16] -[2026-03-26 01:09:55 +0000] [16] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [16] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 01:09:55 +0000] [17] [INFO] Started server process [17] -[2026-03-26 01:09:55 +0000] [17] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [17] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 01:09:55 +0000] [19] [INFO] Started server process [19] -[2026-03-26 01:09:55 +0000] [19] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [19] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [32] [INFO] Booting worker with pid: 32 -[2026-03-26 01:09:55 +0000] [22] [INFO] Started server process [22] -[2026-03-26 01:09:55 +0000] [22] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [22] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [23] [INFO] Started server process [23] -[2026-03-26 01:09:55 +0000] [23] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [23] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [24] [INFO] Started server process [24] -[2026-03-26 01:09:55 +0000] [24] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [24] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [36] [INFO] Booting worker with pid: 36 -[2026-03-26 01:09:55 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 01:09:55 +0000] [28] [INFO] Started server process [28] -[2026-03-26 01:09:55 +0000] [28] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [28] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [31] [INFO] Started server process [31] -[2026-03-26 01:09:55 +0000] [31] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [31] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [40] [INFO] Booting worker with pid: 40 -[2026-03-26 01:09:55 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 01:09:55 +0000] [32] [INFO] Started server process [32] -[2026-03-26 01:09:55 +0000] [32] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [32] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [43] [INFO] Booting worker with pid: 43 -[2026-03-26 01:09:55 +0000] [36] [INFO] Started server process [36] -[2026-03-26 01:09:55 +0000] [36] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [36] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [45] [INFO] Booting worker with pid: 45 -[2026-03-26 01:09:55 +0000] [37] [INFO] Started server process [37] -[2026-03-26 01:09:55 +0000] [37] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [37] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 01:09:55 +0000] [40] [INFO] Started server process [40] -[2026-03-26 01:09:55 +0000] [40] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [40] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [41] [INFO] Started server process [41] -[2026-03-26 01:09:55 +0000] [41] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [41] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 01:09:55 +0000] [43] [INFO] Started server process [43] -[2026-03-26 01:09:55 +0000] [43] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [43] [INFO] Application startup complete. -[2026-03-26 01:09:55 +0000] [52] [INFO] Booting worker with pid: 52 -[2026-03-26 01:09:55 +0000] [45] [INFO] Started server process [45] -[2026-03-26 01:09:55 +0000] [45] [INFO] Waiting for application startup. -[2026-03-26 01:09:55 +0000] [45] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 01:09:56 +0000] [47] [INFO] Started server process [47] -[2026-03-26 01:09:56 +0000] [47] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [47] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [56] [INFO] Booting worker with pid: 56 -[2026-03-26 01:09:56 +0000] [50] [INFO] Started server process [50] -[2026-03-26 01:09:56 +0000] [50] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [50] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 01:09:56 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 01:09:56 +0000] [60] [INFO] Booting worker with pid: 60 -[2026-03-26 01:09:56 +0000] [62] [INFO] Booting worker with pid: 62 -[2026-03-26 01:09:56 +0000] [52] [INFO] Started server process [52] -[2026-03-26 01:09:56 +0000] [52] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [52] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 01:09:56 +0000] [64] [INFO] Booting worker with pid: 64 -[2026-03-26 01:09:56 +0000] [54] [INFO] Started server process [54] -[2026-03-26 01:09:56 +0000] [54] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [54] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [56] [INFO] Started server process [56] -[2026-03-26 01:09:56 +0000] [56] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [56] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [67] [INFO] Booting worker with pid: 67 -[2026-03-26 01:09:56 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 01:09:56 +0000] [58] [INFO] Started server process [58] -[2026-03-26 01:09:56 +0000] [58] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [58] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 01:09:56 +0000] [59] [INFO] Started server process [59] -[2026-03-26 01:09:56 +0000] [59] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [59] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [60] [INFO] Started server process [60] -[2026-03-26 01:09:56 +0000] [60] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [60] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 01:09:56 +0000] [62] [INFO] Started server process [62] -[2026-03-26 01:09:56 +0000] [62] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [62] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [63] [INFO] Started server process [63] -[2026-03-26 01:09:56 +0000] [63] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [63] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [64] [INFO] Started server process [64] -[2026-03-26 01:09:56 +0000] [64] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [64] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [77] [INFO] Booting worker with pid: 77 -[2026-03-26 01:09:56 +0000] [78] [INFO] Booting worker with pid: 78 -[2026-03-26 01:09:56 +0000] [67] [INFO] Started server process [67] -[2026-03-26 01:09:56 +0000] [67] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [67] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [68] [INFO] Started server process [68] -[2026-03-26 01:09:56 +0000] [68] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [68] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [81] [INFO] Booting worker with pid: 81 -[2026-03-26 01:09:56 +0000] [71] [INFO] Started server process [71] -[2026-03-26 01:09:56 +0000] [71] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [71] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [74] [INFO] Started server process [74] -[2026-03-26 01:09:56 +0000] [74] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [74] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [84] [INFO] Booting worker with pid: 84 -[2026-03-26 01:09:56 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 01:09:56 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 01:09:56 +0000] [77] [INFO] Started server process [77] -[2026-03-26 01:09:56 +0000] [77] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [77] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 01:09:56 +0000] [78] [INFO] Started server process [78] -[2026-03-26 01:09:56 +0000] [78] [INFO] Waiting for application startup. -[2026-03-26 01:09:56 +0000] [78] [INFO] Application startup complete. -[2026-03-26 01:09:56 +0000] [90] [INFO] Booting worker with pid: 90 -[2026-03-26 01:09:56 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 01:09:57 +0000] [81] [INFO] Started server process [81] -[2026-03-26 01:09:57 +0000] [81] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [81] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [93] [INFO] Booting worker with pid: 93 -[2026-03-26 01:09:57 +0000] [85] [INFO] Started server process [85] -[2026-03-26 01:09:57 +0000] [85] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [85] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [96] [INFO] Booting worker with pid: 96 -[2026-03-26 01:09:57 +0000] [84] [INFO] Started server process [84] -[2026-03-26 01:09:57 +0000] [84] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [84] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [87] [INFO] Started server process [87] -[2026-03-26 01:09:57 +0000] [87] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [87] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 01:09:57 +0000] [88] [INFO] Started server process [88] -[2026-03-26 01:09:57 +0000] [88] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [88] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [100] [INFO] Booting worker with pid: 100 -[2026-03-26 01:09:57 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 01:09:57 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 01:09:57 +0000] [105] [INFO] Booting worker with pid: 105 -[2026-03-26 01:09:57 +0000] [91] [INFO] Started server process [91] -[2026-03-26 01:09:57 +0000] [91] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [91] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [90] [INFO] Started server process [90] -[2026-03-26 01:09:57 +0000] [90] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [90] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [106] [INFO] Booting worker with pid: 106 -[2026-03-26 01:09:57 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 01:09:57 +0000] [93] [INFO] Started server process [93] -[2026-03-26 01:09:57 +0000] [93] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [93] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [96] [INFO] Started server process [96] -[2026-03-26 01:09:57 +0000] [96] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [96] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [110] [INFO] Booting worker with pid: 110 -[2026-03-26 01:09:57 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 01:09:57 +0000] [98] [INFO] Started server process [98] -[2026-03-26 01:09:57 +0000] [98] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [98] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [100] [INFO] Started server process [100] -[2026-03-26 01:09:57 +0000] [100] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [100] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 01:09:57 +0000] [101] [INFO] Started server process [101] -[2026-03-26 01:09:57 +0000] [101] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [101] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [102] [INFO] Started server process [102] -[2026-03-26 01:09:57 +0000] [102] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [102] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [105] [INFO] Started server process [105] -[2026-03-26 01:09:57 +0000] [105] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [105] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 01:09:57 +0000] [119] [INFO] Booting worker with pid: 119 -[2026-03-26 01:09:57 +0000] [120] [INFO] Booting worker with pid: 120 -[2026-03-26 01:09:57 +0000] [106] [INFO] Started server process [106] -[2026-03-26 01:09:57 +0000] [106] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [106] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [107] [INFO] Started server process [107] -[2026-03-26 01:09:57 +0000] [107] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [107] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 01:09:57 +0000] [110] [INFO] Started server process [110] -[2026-03-26 01:09:57 +0000] [110] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [110] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [112] [INFO] Started server process [112] -[2026-03-26 01:09:57 +0000] [112] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [112] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [126] [INFO] Booting worker with pid: 126 -[2026-03-26 01:09:57 +0000] [127] [INFO] Booting worker with pid: 127 -[2026-03-26 01:09:57 +0000] [115] [INFO] Started server process [115] -[2026-03-26 01:09:57 +0000] [115] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [115] [INFO] Application startup complete. -[2026-03-26 01:09:57 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 01:09:57 +0000] [118] [INFO] Started server process [118] -[2026-03-26 01:09:57 +0000] [118] [INFO] Waiting for application startup. -[2026-03-26 01:09:57 +0000] [118] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [119] [INFO] Started server process [119] -[2026-03-26 01:09:58 +0000] [119] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [119] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 01:09:58 +0000] [120] [INFO] Started server process [120] -[2026-03-26 01:09:58 +0000] [120] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [120] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [123] [INFO] Started server process [123] -[2026-03-26 01:09:58 +0000] [123] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [123] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [135] [INFO] Booting worker with pid: 135 -[2026-03-26 01:09:58 +0000] [126] [INFO] Started server process [126] -[2026-03-26 01:09:58 +0000] [126] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [126] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 01:09:58 +0000] [127] [INFO] Started server process [127] -[2026-03-26 01:09:58 +0000] [127] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [127] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 01:09:58 +0000] [140] [INFO] Booting worker with pid: 140 -[2026-03-26 01:09:58 +0000] [141] [INFO] Booting worker with pid: 141 -[2026-03-26 01:09:58 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 01:09:58 +0000] [129] [INFO] Started server process [129] -[2026-03-26 01:09:58 +0000] [129] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [129] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 01:09:58 +0000] [133] [INFO] Started server process [133] -[2026-03-26 01:09:58 +0000] [133] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [133] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 01:09:58 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 01:09:58 +0000] [135] [INFO] Started server process [135] -[2026-03-26 01:09:58 +0000] [135] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [135] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [139] [INFO] Started server process [139] -[2026-03-26 01:09:58 +0000] [139] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [139] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [150] [INFO] Booting worker with pid: 150 -[2026-03-26 01:09:58 +0000] [138] [INFO] Started server process [138] -[2026-03-26 01:09:58 +0000] [138] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [138] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 01:09:58 +0000] [141] [INFO] Started server process [141] -[2026-03-26 01:09:58 +0000] [141] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [141] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [157] [INFO] Booting worker with pid: 157 -[2026-03-26 01:09:58 +0000] [140] [INFO] Started server process [140] -[2026-03-26 01:09:58 +0000] [140] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [140] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [142] [INFO] Started server process [142] -[2026-03-26 01:09:58 +0000] [142] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [142] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [144] [INFO] Started server process [144] -[2026-03-26 01:09:58 +0000] [144] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [144] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 01:09:58 +0000] [159] [INFO] Booting worker with pid: 159 -[2026-03-26 01:09:58 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 01:09:58 +0000] [146] [INFO] Started server process [146] -[2026-03-26 01:09:58 +0000] [146] [INFO] Waiting for application startup. -[2026-03-26 01:09:58 +0000] [146] [INFO] Application startup complete. -[2026-03-26 01:09:58 +0000] [162] [INFO] Booting worker with pid: 162 -[2026-03-26 01:09:59 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 01:09:59 +0000] [148] [INFO] Started server process [148] -[2026-03-26 01:09:59 +0000] [148] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [148] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [150] [INFO] Started server process [150] -[2026-03-26 01:09:59 +0000] [150] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [150] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [166] [INFO] Booting worker with pid: 166 -[2026-03-26 01:09:59 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 01:09:59 +0000] [152] [INFO] Started server process [152] -[2026-03-26 01:09:59 +0000] [152] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [152] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [157] [INFO] Started server process [157] -[2026-03-26 01:09:59 +0000] [157] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [157] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [170] [INFO] Booting worker with pid: 170 -[2026-03-26 01:09:59 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 01:09:59 +0000] [158] [INFO] Started server process [158] -[2026-03-26 01:09:59 +0000] [158] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [158] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [160] [INFO] Started server process [160] -[2026-03-26 01:09:59 +0000] [160] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [160] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 01:09:59 +0000] [159] [INFO] Started server process [159] -[2026-03-26 01:09:59 +0000] [159] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [159] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 01:09:59 +0000] [162] [INFO] Started server process [162] -[2026-03-26 01:09:59 +0000] [162] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [162] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 01:09:59 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 01:09:59 +0000] [163] [INFO] Started server process [163] -[2026-03-26 01:09:59 +0000] [163] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [163] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [181] [INFO] Booting worker with pid: 181 -[2026-03-26 01:09:59 +0000] [167] [INFO] Started server process [167] -[2026-03-26 01:09:59 +0000] [167] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [167] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [166] [INFO] Started server process [166] -[2026-03-26 01:09:59 +0000] [166] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [166] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [184] [INFO] Booting worker with pid: 184 -[2026-03-26 01:09:59 +0000] [185] [INFO] Booting worker with pid: 185 -[2026-03-26 01:09:59 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 01:09:59 +0000] [170] [INFO] Started server process [170] -[2026-03-26 01:09:59 +0000] [170] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [170] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [172] [INFO] Started server process [172] -[2026-03-26 01:09:59 +0000] [172] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [172] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 01:09:59 +0000] [174] [INFO] Started server process [174] -[2026-03-26 01:09:59 +0000] [174] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [174] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [191] [INFO] Booting worker with pid: 191 -[2026-03-26 01:09:59 +0000] [176] [INFO] Started server process [176] -[2026-03-26 01:09:59 +0000] [176] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [176] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [193] [INFO] Booting worker with pid: 193 -[2026-03-26 01:09:59 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 01:09:59 +0000] [178] [INFO] Started server process [178] -[2026-03-26 01:09:59 +0000] [178] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [178] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [179] [INFO] Started server process [179] -[2026-03-26 01:09:59 +0000] [179] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [179] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [181] [INFO] Started server process [181] -[2026-03-26 01:09:59 +0000] [181] [INFO] Waiting for application startup. -[2026-03-26 01:09:59 +0000] [181] [INFO] Application startup complete. -[2026-03-26 01:09:59 +0000] [198] [INFO] Booting worker with pid: 198 -[2026-03-26 01:09:59 +0000] [199] [INFO] Booting worker with pid: 199 -[2026-03-26 01:10:00 +0000] [184] [INFO] Started server process [184] -[2026-03-26 01:10:00 +0000] [184] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [184] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [201] [INFO] Booting worker with pid: 201 -[2026-03-26 01:10:00 +0000] [187] [INFO] Started server process [187] -[2026-03-26 01:10:00 +0000] [187] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [187] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [185] [INFO] Started server process [185] -[2026-03-26 01:10:00 +0000] [185] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [185] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 01:10:00 +0000] [189] [INFO] Started server process [189] -[2026-03-26 01:10:00 +0000] [189] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [189] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [207] [INFO] Booting worker with pid: 207 -[2026-03-26 01:10:00 +0000] [191] [INFO] Started server process [191] -[2026-03-26 01:10:00 +0000] [191] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [191] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 01:10:00 +0000] [209] [INFO] Booting worker with pid: 209 -[2026-03-26 01:10:00 +0000] [211] [INFO] Booting worker with pid: 211 -[2026-03-26 01:10:00 +0000] [193] [INFO] Started server process [193] -[2026-03-26 01:10:00 +0000] [193] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [193] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [194] [INFO] Started server process [194] -[2026-03-26 01:10:00 +0000] [194] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [194] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [198] [INFO] Started server process [198] -[2026-03-26 01:10:00 +0000] [198] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [198] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 01:10:00 +0000] [199] [INFO] Started server process [199] -[2026-03-26 01:10:00 +0000] [199] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [199] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 01:10:00 +0000] [201] [INFO] Started server process [201] -[2026-03-26 01:10:00 +0000] [201] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [201] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [219] [INFO] Booting worker with pid: 219 -[2026-03-26 01:10:00 +0000] [205] [INFO] Started server process [205] -[2026-03-26 01:10:00 +0000] [205] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [205] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 01:10:00 +0000] [207] [INFO] Started server process [207] -[2026-03-26 01:10:00 +0000] [207] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [207] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [208] [INFO] Started server process [208] -[2026-03-26 01:10:00 +0000] [208] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [208] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [209] [INFO] Started server process [209] -[2026-03-26 01:10:00 +0000] [209] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [209] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [211] [INFO] Started server process [211] -[2026-03-26 01:10:00 +0000] [211] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [211] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [225] [INFO] Booting worker with pid: 225 -[2026-03-26 01:10:00 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 01:10:00 +0000] [214] [INFO] Started server process [214] -[2026-03-26 01:10:00 +0000] [214] [INFO] Waiting for application startup. -[2026-03-26 01:10:00 +0000] [214] [INFO] Application startup complete. -[2026-03-26 01:10:00 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 01:10:01 +0000] [216] [INFO] Started server process [216] -[2026-03-26 01:10:01 +0000] [216] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [230] [INFO] Booting worker with pid: 230 -[2026-03-26 01:10:01 +0000] [216] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [231] [INFO] Booting worker with pid: 231 -[2026-03-26 01:10:01 +0000] [219] [INFO] Started server process [219] -[2026-03-26 01:10:01 +0000] [219] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [219] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 01:10:01 +0000] [221] [INFO] Started server process [221] -[2026-03-26 01:10:01 +0000] [221] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [221] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 01:10:01 +0000] [225] [INFO] Started server process [225] -[2026-03-26 01:10:01 +0000] [225] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [225] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [237] [INFO] Booting worker with pid: 237 -[2026-03-26 01:10:01 +0000] [239] [INFO] Booting worker with pid: 239 -[2026-03-26 01:10:01 +0000] [226] [INFO] Started server process [226] -[2026-03-26 01:10:01 +0000] [226] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [226] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 01:10:01 +0000] [228] [INFO] Started server process [228] -[2026-03-26 01:10:01 +0000] [228] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [228] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 01:10:01 +0000] [230] [INFO] Started server process [230] -[2026-03-26 01:10:01 +0000] [230] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [230] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 01:10:01 +0000] [231] [INFO] Started server process [231] -[2026-03-26 01:10:01 +0000] [231] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [231] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [246] [INFO] Booting worker with pid: 246 -[2026-03-26 01:10:01 +0000] [248] [INFO] Booting worker with pid: 248 -[2026-03-26 01:10:01 +0000] [234] [INFO] Started server process [234] -[2026-03-26 01:10:01 +0000] [234] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [234] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 01:10:01 +0000] [235] [INFO] Started server process [235] -[2026-03-26 01:10:01 +0000] [235] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [235] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [251] [INFO] Booting worker with pid: 251 -[2026-03-26 01:10:01 +0000] [237] [INFO] Started server process [237] -[2026-03-26 01:10:01 +0000] [237] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [237] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [239] [INFO] Started server process [239] -[2026-03-26 01:10:01 +0000] [239] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [239] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 01:10:01 +0000] [240] [INFO] Started server process [240] -[2026-03-26 01:10:01 +0000] [240] [INFO] Waiting for application startup. -[2026-03-26 01:10:01 +0000] [240] [INFO] Application startup complete. -[2026-03-26 01:10:01 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 01:10:02 +0000] [242] [INFO] Started server process [242] -[2026-03-26 01:10:02 +0000] [242] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [242] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 01:10:02 +0000] [259] [INFO] Booting worker with pid: 259 -[2026-03-26 01:10:02 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 01:10:02 +0000] [262] [INFO] Booting worker with pid: 262 -[2026-03-26 01:10:02 +0000] [244] [INFO] Started server process [244] -[2026-03-26 01:10:02 +0000] [244] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [244] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [246] [INFO] Started server process [246] -[2026-03-26 01:10:02 +0000] [246] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [246] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [264] [INFO] Booting worker with pid: 264 -[2026-03-26 01:10:02 +0000] [265] [INFO] Booting worker with pid: 265 -[2026-03-26 01:10:02 +0000] [249] [INFO] Started server process [249] -[2026-03-26 01:10:02 +0000] [249] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [267] [INFO] Booting worker with pid: 267 -[2026-03-26 01:10:02 +0000] [249] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [268] [INFO] Booting worker with pid: 268 -[2026-03-26 01:10:02 +0000] [269] [INFO] Booting worker with pid: 269 -[2026-03-26 01:10:02 +0000] [270] [INFO] Booting worker with pid: 270 -[2026-03-26 01:10:02 +0000] [251] [INFO] Started server process [251] -[2026-03-26 01:10:02 +0000] [251] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [251] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [273] [INFO] Booting worker with pid: 273 -[2026-03-26 01:10:02 +0000] [248] [INFO] Started server process [248] -[2026-03-26 01:10:02 +0000] [248] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [248] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [275] [INFO] Booting worker with pid: 275 -[2026-03-26 01:10:02 +0000] [276] [INFO] Booting worker with pid: 276 -[2026-03-26 01:10:02 +0000] [254] [INFO] Started server process [254] -[2026-03-26 01:10:02 +0000] [254] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [254] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [256] [INFO] Started server process [256] -[2026-03-26 01:10:02 +0000] [256] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [256] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [262] [INFO] Started server process [262] -[2026-03-26 01:10:02 +0000] [262] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [262] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [259] [INFO] Started server process [259] -[2026-03-26 01:10:02 +0000] [259] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [259] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [281] [INFO] Booting worker with pid: 281 -[2026-03-26 01:10:02 +0000] [260] [INFO] Started server process [260] -[2026-03-26 01:10:02 +0000] [260] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [260] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [282] [INFO] Booting worker with pid: 282 -[2026-03-26 01:10:02 +0000] [267] [INFO] Started server process [267] -[2026-03-26 01:10:02 +0000] [267] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [267] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [284] [INFO] Booting worker with pid: 284 -[2026-03-26 01:10:02 +0000] [258] [INFO] Started server process [258] -[2026-03-26 01:10:02 +0000] [258] [INFO] Waiting for application startup. -[2026-03-26 01:10:02 +0000] [258] [INFO] Application startup complete. -[2026-03-26 01:10:02 +0000] [286] [INFO] Booting worker with pid: 286 -[2026-03-26 01:10:02 +0000] [287] [INFO] Booting worker with pid: 287 -[2026-03-26 01:10:03 +0000] [268] [INFO] Started server process [268] -[2026-03-26 01:10:03 +0000] [268] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [268] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [289] [INFO] Booting worker with pid: 289 -[2026-03-26 01:10:03 +0000] [291] [INFO] Booting worker with pid: 291 -[2026-03-26 01:10:03 +0000] [264] [INFO] Started server process [264] -[2026-03-26 01:10:03 +0000] [264] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [264] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [275] [INFO] Started server process [275] -[2026-03-26 01:10:03 +0000] [275] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [275] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [295] [INFO] Booting worker with pid: 295 -[2026-03-26 01:10:03 +0000] [270] [INFO] Started server process [270] -[2026-03-26 01:10:03 +0000] [270] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [270] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [281] [INFO] Started server process [281] -[2026-03-26 01:10:03 +0000] [281] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [281] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [276] [INFO] Started server process [276] -[2026-03-26 01:10:03 +0000] [276] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [276] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [298] [INFO] Booting worker with pid: 298 -[2026-03-26 01:10:03 +0000] [265] [INFO] Started server process [265] -[2026-03-26 01:10:03 +0000] [265] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [265] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [301] [INFO] Booting worker with pid: 301 -[2026-03-26 01:10:03 +0000] [286] [INFO] Started server process [286] -[2026-03-26 01:10:03 +0000] [286] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [286] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [269] [INFO] Started server process [269] -[2026-03-26 01:10:03 +0000] [269] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [269] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [273] [INFO] Started server process [273] -[2026-03-26 01:10:03 +0000] [273] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [273] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [303] [INFO] Booting worker with pid: 303 -[2026-03-26 01:10:03 +0000] [304] [INFO] Booting worker with pid: 304 -[2026-03-26 01:10:03 +0000] [305] [INFO] Booting worker with pid: 305 -[2026-03-26 01:10:03 +0000] [308] [INFO] Booting worker with pid: 308 -[2026-03-26 01:10:03 +0000] [289] [INFO] Started server process [289] -[2026-03-26 01:10:03 +0000] [289] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [289] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [287] [INFO] Started server process [287] -[2026-03-26 01:10:03 +0000] [287] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [287] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [291] [INFO] Started server process [291] -[2026-03-26 01:10:03 +0000] [291] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [291] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [311] [INFO] Booting worker with pid: 311 -[2026-03-26 01:10:03 +0000] [312] [INFO] Booting worker with pid: 312 -[2026-03-26 01:10:03 +0000] [282] [INFO] Started server process [282] -[2026-03-26 01:10:03 +0000] [282] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [282] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [313] [INFO] Booting worker with pid: 313 -[2026-03-26 01:10:03 +0000] [301] [INFO] Started server process [301] -[2026-03-26 01:10:03 +0000] [301] [INFO] Waiting for application startup. -[2026-03-26 01:10:03 +0000] [301] [INFO] Application startup complete. -[2026-03-26 01:10:03 +0000] [315] [INFO] Booting worker with pid: 315 -[2026-03-26 01:10:04 +0000] [316] [INFO] Booting worker with pid: 316 -[2026-03-26 01:10:04 +0000] [304] [INFO] Started server process [304] -[2026-03-26 01:10:04 +0000] [304] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [304] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [295] [INFO] Started server process [295] -[2026-03-26 01:10:04 +0000] [295] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [295] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [319] [INFO] Booting worker with pid: 319 -[2026-03-26 01:10:04 +0000] [320] [INFO] Booting worker with pid: 320 -[2026-03-26 01:10:04 +0000] [322] [INFO] Booting worker with pid: 322 -[2026-03-26 01:10:04 +0000] [284] [INFO] Started server process [284] -[2026-03-26 01:10:04 +0000] [324] [INFO] Booting worker with pid: 324 -[2026-03-26 01:10:04 +0000] [284] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [284] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [303] [INFO] Started server process [303] -[2026-03-26 01:10:04 +0000] [303] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [303] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [326] [INFO] Booting worker with pid: 326 -[2026-03-26 01:10:04 +0000] [305] [INFO] Started server process [305] -[2026-03-26 01:10:04 +0000] [305] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [305] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [327] [INFO] Booting worker with pid: 327 -[2026-03-26 01:10:04 +0000] [298] [INFO] Started server process [298] -[2026-03-26 01:10:04 +0000] [298] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [298] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [330] [INFO] Booting worker with pid: 330 -[2026-03-26 01:10:04 +0000] [312] [INFO] Started server process [312] -[2026-03-26 01:10:04 +0000] [312] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [312] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [331] [INFO] Booting worker with pid: 331 -[2026-03-26 01:10:04 +0000] [332] [INFO] Booting worker with pid: 332 -[2026-03-26 01:10:04 +0000] [333] [INFO] Booting worker with pid: 333 -[2026-03-26 01:10:04 +0000] [335] [INFO] Booting worker with pid: 335 -[2026-03-26 01:10:04 +0000] [315] [INFO] Started server process [315] -[2026-03-26 01:10:04 +0000] [315] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [315] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [336] [INFO] Booting worker with pid: 336 -[2026-03-26 01:10:04 +0000] [337] [INFO] Booting worker with pid: 337 -[2026-03-26 01:10:04 +0000] [339] [INFO] Booting worker with pid: 339 -[2026-03-26 01:10:04 +0000] [313] [INFO] Started server process [313] -[2026-03-26 01:10:04 +0000] [313] [INFO] Waiting for application startup. -[2026-03-26 01:10:04 +0000] [313] [INFO] Application startup complete. -[2026-03-26 01:10:04 +0000] [340] [INFO] Booting worker with pid: 340 -[2026-03-26 01:10:04 +0000] [341] [INFO] Booting worker with pid: 341 -[2026-03-26 01:10:05 +0000] [342] [INFO] Booting worker with pid: 342 -[2026-03-26 01:10:05 +0000] [311] [INFO] Started server process [311] -[2026-03-26 01:10:05 +0000] [311] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [311] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [346] [INFO] Booting worker with pid: 346 -[2026-03-26 01:10:05 +0000] [320] [INFO] Started server process [320] -[2026-03-26 01:10:05 +0000] [320] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [320] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [308] [INFO] Started server process [308] -[2026-03-26 01:10:05 +0000] [308] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [308] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [347] [INFO] Booting worker with pid: 347 -[2026-03-26 01:10:05 +0000] [327] [INFO] Started server process [327] -[2026-03-26 01:10:05 +0000] [327] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [327] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [316] [INFO] Started server process [316] -[2026-03-26 01:10:05 +0000] [316] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [316] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [350] [INFO] Booting worker with pid: 350 -[2026-03-26 01:10:05 +0000] [352] [INFO] Booting worker with pid: 352 -[2026-03-26 01:10:05 +0000] [353] [INFO] Booting worker with pid: 353 -[2026-03-26 01:10:05 +0000] [326] [INFO] Started server process [326] -[2026-03-26 01:10:05 +0000] [326] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [326] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [322] [INFO] Started server process [322] -[2026-03-26 01:10:05 +0000] [322] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [322] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [335] [INFO] Started server process [335] -[2026-03-26 01:10:05 +0000] [335] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [335] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [356] [INFO] Booting worker with pid: 356 -[2026-03-26 01:10:05 +0000] [359] [INFO] Booting worker with pid: 359 -[2026-03-26 01:10:05 +0000] [339] [INFO] Started server process [339] -[2026-03-26 01:10:05 +0000] [339] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [339] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [340] [INFO] Started server process [340] -[2026-03-26 01:10:05 +0000] [331] [INFO] Started server process [331] -[2026-03-26 01:10:05 +0000] [340] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [340] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [331] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [331] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [319] [INFO] Started server process [319] -[2026-03-26 01:10:05 +0000] [319] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [319] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [362] [INFO] Booting worker with pid: 362 -[2026-03-26 01:10:05 +0000] [363] [INFO] Booting worker with pid: 363 -[2026-03-26 01:10:05 +0000] [364] [INFO] Booting worker with pid: 364 -[2026-03-26 01:10:05 +0000] [365] [INFO] Booting worker with pid: 365 -[2026-03-26 01:10:05 +0000] [367] [INFO] Booting worker with pid: 367 -[2026-03-26 01:10:05 +0000] [333] [INFO] Started server process [333] -[2026-03-26 01:10:05 +0000] [333] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [333] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [368] [INFO] Booting worker with pid: 368 -[2026-03-26 01:10:05 +0000] [324] [INFO] Started server process [324] -[2026-03-26 01:10:05 +0000] [324] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [324] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [332] [INFO] Started server process [332] -[2026-03-26 01:10:05 +0000] [332] [INFO] Waiting for application startup. -[2026-03-26 01:10:05 +0000] [332] [INFO] Application startup complete. -[2026-03-26 01:10:05 +0000] [371] [INFO] Booting worker with pid: 371 -[2026-03-26 01:10:06 +0000] [346] [INFO] Started server process [346] -[2026-03-26 01:10:06 +0000] [346] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [346] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [375] [INFO] Booting worker with pid: 375 -[2026-03-26 01:10:06 +0000] [342] [INFO] Started server process [342] -[2026-03-26 01:10:06 +0000] [342] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [342] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [347] [INFO] Started server process [347] -[2026-03-26 01:10:06 +0000] [347] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [347] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [379] [INFO] Booting worker with pid: 379 -[2026-03-26 01:10:06 +0000] [337] [INFO] Started server process [337] -[2026-03-26 01:10:06 +0000] [337] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [337] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [330] [INFO] Started server process [330] -[2026-03-26 01:10:06 +0000] [330] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [330] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [382] [INFO] Booting worker with pid: 382 -[2026-03-26 01:10:06 +0000] [341] [INFO] Started server process [341] -[2026-03-26 01:10:06 +0000] [341] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [383] [INFO] Booting worker with pid: 383 -[2026-03-26 01:10:06 +0000] [341] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [352] [INFO] Started server process [352] -[2026-03-26 01:10:06 +0000] [384] [INFO] Booting worker with pid: 384 -[2026-03-26 01:10:06 +0000] [352] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [336] [INFO] Started server process [336] -[2026-03-26 01:10:06 +0000] [352] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [336] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [336] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [353] [INFO] Started server process [353] -[2026-03-26 01:10:06 +0000] [353] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [353] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [386] [INFO] Booting worker with pid: 386 -[2026-03-26 01:10:06 +0000] [387] [INFO] Booting worker with pid: 387 -[2026-03-26 01:10:06 +0000] [388] [INFO] Booting worker with pid: 388 -[2026-03-26 01:10:06 +0000] [391] [INFO] Booting worker with pid: 391 -[2026-03-26 01:10:06 +0000] [359] [INFO] Started server process [359] -[2026-03-26 01:10:06 +0000] [359] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [359] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [365] [INFO] Started server process [365] -[2026-03-26 01:10:06 +0000] [365] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [365] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [363] [INFO] Started server process [363] -[2026-03-26 01:10:06 +0000] [363] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [363] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [356] [INFO] Started server process [356] -[2026-03-26 01:10:06 +0000] [356] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [356] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [350] [INFO] Started server process [350] -[2026-03-26 01:10:06 +0000] [350] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [350] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [395] [INFO] Booting worker with pid: 395 -[2026-03-26 01:10:06 +0000] [396] [INFO] Booting worker with pid: 396 -[2026-03-26 01:10:06 +0000] [398] [INFO] Booting worker with pid: 398 -[2026-03-26 01:10:06 +0000] [368] [INFO] Started server process [368] -[2026-03-26 01:10:06 +0000] [368] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [368] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [399] [INFO] Booting worker with pid: 399 -[2026-03-26 01:10:06 +0000] [382] [INFO] Started server process [382] -[2026-03-26 01:10:06 +0000] [382] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [382] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [401] [INFO] Booting worker with pid: 401 -[2026-03-26 01:10:06 +0000] [403] [INFO] Booting worker with pid: 403 -[2026-03-26 01:10:06 +0000] [383] [INFO] Started server process [383] -[2026-03-26 01:10:06 +0000] [383] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [383] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [406] [INFO] Booting worker with pid: 406 -[2026-03-26 01:10:06 +0000] [386] [INFO] Started server process [386] -[2026-03-26 01:10:06 +0000] [386] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [386] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [362] [INFO] Started server process [362] -[2026-03-26 01:10:06 +0000] [362] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [362] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [375] [INFO] Started server process [375] -[2026-03-26 01:10:06 +0000] [375] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [375] [INFO] Application startup complete. -[2026-03-26 01:10:06 +0000] [409] [INFO] Booting worker with pid: 409 -[2026-03-26 01:10:06 +0000] [391] [INFO] Started server process [391] -[2026-03-26 01:10:06 +0000] [391] [INFO] Waiting for application startup. -[2026-03-26 01:10:06 +0000] [391] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [371] [INFO] Started server process [371] -[2026-03-26 01:10:07 +0000] [371] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [371] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [411] [INFO] Booting worker with pid: 411 -[2026-03-26 01:10:07 +0000] [412] [INFO] Booting worker with pid: 412 -[2026-03-26 01:10:07 +0000] [413] [INFO] Booting worker with pid: 413 -[2026-03-26 01:10:07 +0000] [415] [INFO] Booting worker with pid: 415 -[2026-03-26 01:10:07 +0000] [416] [INFO] Booting worker with pid: 416 -[2026-03-26 01:10:07 +0000] [364] [INFO] Started server process [364] -[2026-03-26 01:10:07 +0000] [364] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [364] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [418] [INFO] Booting worker with pid: 418 -[2026-03-26 01:10:07 +0000] [419] [INFO] Booting worker with pid: 419 -[2026-03-26 01:10:07 +0000] [367] [INFO] Started server process [367] -[2026-03-26 01:10:07 +0000] [367] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [367] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [421] [INFO] Booting worker with pid: 421 -[2026-03-26 01:10:07 +0000] [387] [INFO] Started server process [387] -[2026-03-26 01:10:07 +0000] [387] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [387] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [411] [INFO] Started server process [411] -[2026-03-26 01:10:07 +0000] [411] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [411] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [424] [INFO] Booting worker with pid: 424 -[2026-03-26 01:10:07 +0000] [388] [INFO] Started server process [388] -[2026-03-26 01:10:07 +0000] [388] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [388] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [426] [INFO] Booting worker with pid: 426 -[2026-03-26 01:10:07 +0000] [379] [INFO] Started server process [379] -[2026-03-26 01:10:07 +0000] [379] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [379] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [429] [INFO] Booting worker with pid: 429 -[2026-03-26 01:10:07 +0000] [406] [INFO] Started server process [406] -[2026-03-26 01:10:07 +0000] [406] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [406] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [413] [INFO] Started server process [413] -[2026-03-26 01:10:07 +0000] [413] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [413] [INFO] Application startup complete. -[2026-03-26 01:10:07 +0000] [431] [INFO] Booting worker with pid: 431 -[2026-03-26 01:10:07 +0000] [395] [INFO] Started server process [395] -[2026-03-26 01:10:07 +0000] [395] [INFO] Waiting for application startup. -[2026-03-26 01:10:07 +0000] [395] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [433] [INFO] Booting worker with pid: 433 -[2026-03-26 01:10:08 +0000] [384] [INFO] Started server process [384] -[2026-03-26 01:10:08 +0000] [384] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [384] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [415] [INFO] Started server process [415] -[2026-03-26 01:10:08 +0000] [415] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [415] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [435] [INFO] Booting worker with pid: 435 -[2026-03-26 01:10:08 +0000] [437] [INFO] Booting worker with pid: 437 -[2026-03-26 01:10:08 +0000] [401] [INFO] Started server process [401] -[2026-03-26 01:10:08 +0000] [401] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [401] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [439] [INFO] Booting worker with pid: 439 -[2026-03-26 01:10:08 +0000] [440] [INFO] Booting worker with pid: 440 -[2026-03-26 01:10:08 +0000] [441] [INFO] Booting worker with pid: 441 -[2026-03-26 01:10:08 +0000] [403] [INFO] Started server process [403] -[2026-03-26 01:10:08 +0000] [403] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [403] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [442] [INFO] Booting worker with pid: 442 -[2026-03-26 01:10:08 +0000] [426] [INFO] Started server process [426] -[2026-03-26 01:10:08 +0000] [426] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [426] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [444] [INFO] Booting worker with pid: 444 -[2026-03-26 01:10:08 +0000] [416] [INFO] Started server process [416] -[2026-03-26 01:10:08 +0000] [416] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [416] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [449] [INFO] Booting worker with pid: 449 -[2026-03-26 01:10:08 +0000] [398] [INFO] Started server process [398] -[2026-03-26 01:10:08 +0000] [398] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [398] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [399] [INFO] Started server process [399] -[2026-03-26 01:10:08 +0000] [399] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [399] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [450] [INFO] Booting worker with pid: 450 -[2026-03-26 01:10:08 +0000] [396] [INFO] Started server process [396] -[2026-03-26 01:10:08 +0000] [396] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [396] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [452] [INFO] Booting worker with pid: 452 -[2026-03-26 01:10:08 +0000] [418] [INFO] Started server process [418] -[2026-03-26 01:10:08 +0000] [418] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [418] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [453] [INFO] Booting worker with pid: 453 -[2026-03-26 01:10:08 +0000] [433] [INFO] Started server process [433] -[2026-03-26 01:10:08 +0000] [433] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [433] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [455] [INFO] Booting worker with pid: 455 -[2026-03-26 01:10:08 +0000] [456] [INFO] Booting worker with pid: 456 -[2026-03-26 01:10:08 +0000] [457] [INFO] Booting worker with pid: 457 -[2026-03-26 01:10:08 +0000] [459] [INFO] Booting worker with pid: 459 -[2026-03-26 01:10:08 +0000] [460] [INFO] Booting worker with pid: 460 -[2026-03-26 01:10:08 +0000] [419] [INFO] Started server process [419] -[2026-03-26 01:10:08 +0000] [419] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [461] [INFO] Booting worker with pid: 461 -[2026-03-26 01:10:08 +0000] [419] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [462] [INFO] Booting worker with pid: 462 -[2026-03-26 01:10:08 +0000] [464] [INFO] Booting worker with pid: 464 -[2026-03-26 01:10:08 +0000] [437] [INFO] Started server process [437] -[2026-03-26 01:10:08 +0000] [437] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [437] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [439] [INFO] Started server process [439] -[2026-03-26 01:10:08 +0000] [439] [INFO] Waiting for application startup. -[2026-03-26 01:10:08 +0000] [439] [INFO] Application startup complete. -[2026-03-26 01:10:08 +0000] [467] [INFO] Booting worker with pid: 467 -[2026-03-26 01:10:09 +0000] [412] [INFO] Started server process [412] -[2026-03-26 01:10:09 +0000] [412] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [412] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [469] [INFO] Booting worker with pid: 469 -[2026-03-26 01:10:09 +0000] [424] [INFO] Started server process [424] -[2026-03-26 01:10:09 +0000] [424] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [424] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [470] [INFO] Booting worker with pid: 470 -[2026-03-26 01:10:09 +0000] [471] [INFO] Booting worker with pid: 471 -[2026-03-26 01:10:09 +0000] [421] [INFO] Started server process [421] -[2026-03-26 01:10:09 +0000] [421] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [421] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [473] [INFO] Booting worker with pid: 473 -[2026-03-26 01:10:09 +0000] [453] [INFO] Started server process [453] -[2026-03-26 01:10:09 +0000] [453] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [453] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [476] [INFO] Booting worker with pid: 476 -[2026-03-26 01:10:09 +0000] [478] [INFO] Booting worker with pid: 478 -[2026-03-26 01:10:09 +0000] [431] [INFO] Started server process [431] -[2026-03-26 01:10:09 +0000] [431] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [431] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [441] [INFO] Started server process [441] -[2026-03-26 01:10:09 +0000] [441] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [441] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [481] [INFO] Booting worker with pid: 481 -[2026-03-26 01:10:09 +0000] [450] [INFO] Started server process [450] -[2026-03-26 01:10:09 +0000] [450] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [450] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [464] [INFO] Started server process [464] -[2026-03-26 01:10:09 +0000] [464] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [464] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [483] [INFO] Booting worker with pid: 483 -[2026-03-26 01:10:09 +0000] [435] [INFO] Started server process [435] -[2026-03-26 01:10:09 +0000] [435] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [435] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [484] [INFO] Booting worker with pid: 484 -[2026-03-26 01:10:09 +0000] [485] [INFO] Booting worker with pid: 485 -[2026-03-26 01:10:09 +0000] [456] [INFO] Started server process [456] -[2026-03-26 01:10:09 +0000] [456] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [456] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [488] [INFO] Booting worker with pid: 488 -[2026-03-26 01:10:09 +0000] [490] [INFO] Booting worker with pid: 490 -[2026-03-26 01:10:09 +0000] [449] [INFO] Started server process [449] -[2026-03-26 01:10:09 +0000] [449] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [449] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [455] [INFO] Started server process [455] -[2026-03-26 01:10:09 +0000] [455] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [455] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [492] [INFO] Booting worker with pid: 492 -[2026-03-26 01:10:09 +0000] [462] [INFO] Started server process [462] -[2026-03-26 01:10:09 +0000] [462] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [462] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [429] [INFO] Started server process [429] -[2026-03-26 01:10:09 +0000] [429] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [429] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [444] [INFO] Started server process [444] -[2026-03-26 01:10:09 +0000] [444] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [444] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [496] [INFO] Booting worker with pid: 496 -[2026-03-26 01:10:09 +0000] [409] [INFO] Started server process [409] -[2026-03-26 01:10:09 +0000] [409] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [409] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [467] [INFO] Started server process [467] -[2026-03-26 01:10:09 +0000] [467] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [467] [INFO] Application startup complete. -[2026-03-26 01:10:09 +0000] [473] [INFO] Started server process [473] -[2026-03-26 01:10:09 +0000] [473] [INFO] Waiting for application startup. -[2026-03-26 01:10:09 +0000] [473] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [476] [INFO] Started server process [476] -[2026-03-26 01:10:10 +0000] [476] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [476] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [469] [INFO] Started server process [469] -[2026-03-26 01:10:10 +0000] [469] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [469] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [452] [INFO] Started server process [452] -[2026-03-26 01:10:10 +0000] [452] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [452] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [460] [INFO] Started server process [460] -[2026-03-26 01:10:10 +0000] [460] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [460] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [442] [INFO] Started server process [442] -[2026-03-26 01:10:10 +0000] [442] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [442] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [459] [INFO] Started server process [459] -[2026-03-26 01:10:10 +0000] [459] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [459] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [471] [INFO] Started server process [471] -[2026-03-26 01:10:10 +0000] [471] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [471] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [484] [INFO] Started server process [484] -[2026-03-26 01:10:10 +0000] [484] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [484] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [440] [INFO] Started server process [440] -[2026-03-26 01:10:10 +0000] [440] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [440] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [457] [INFO] Started server process [457] -[2026-03-26 01:10:10 +0000] [457] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [457] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [483] [INFO] Started server process [483] -[2026-03-26 01:10:10 +0000] [483] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [483] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [485] [INFO] Started server process [485] -[2026-03-26 01:10:10 +0000] [485] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [485] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [160] [ERROR] Exception in ASGI application +[2026-03-29 01:53:34 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 01:53:34 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 01:53:34 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker +[2026-03-29 01:53:34 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 01:53:34 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 01:53:34 +0000] [10] [INFO] Booting worker with pid: 10 +[2026-03-29 01:53:34 +0000] [11] [INFO] Booting worker with pid: 11 +[2026-03-29 01:53:34 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 01:53:34 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 01:53:34 +0000] [14] [INFO] Booting worker with pid: 14 +[2026-03-29 01:53:34 +0000] [9] [INFO] Started server process [9] +[2026-03-29 01:53:34 +0000] [9] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [9] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [8] [INFO] Started server process [8] +[2026-03-29 01:53:34 +0000] [8] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [8] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [10] [INFO] Started server process [10] +[2026-03-29 01:53:34 +0000] [10] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [10] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [18] [INFO] Booting worker with pid: 18 +[2026-03-29 01:53:34 +0000] [19] [INFO] Booting worker with pid: 19 +[2026-03-29 01:53:34 +0000] [11] [INFO] Started server process [11] +[2026-03-29 01:53:34 +0000] [11] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [11] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [21] [INFO] Booting worker with pid: 21 +[2026-03-29 01:53:34 +0000] [12] [INFO] Started server process [12] +[2026-03-29 01:53:34 +0000] [12] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [12] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [13] [INFO] Started server process [13] +[2026-03-29 01:53:34 +0000] [13] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [13] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [24] [INFO] Booting worker with pid: 24 +[2026-03-29 01:53:34 +0000] [26] [INFO] Booting worker with pid: 26 +[2026-03-29 01:53:34 +0000] [14] [INFO] Started server process [14] +[2026-03-29 01:53:34 +0000] [14] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [14] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 01:53:34 +0000] [18] [INFO] Started server process [18] +[2026-03-29 01:53:34 +0000] [18] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [18] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 01:53:34 +0000] [19] [INFO] Started server process [19] +[2026-03-29 01:53:34 +0000] [19] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [19] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [21] [INFO] Started server process [21] +[2026-03-29 01:53:34 +0000] [21] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [21] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 01:53:34 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 01:53:34 +0000] [24] [INFO] Started server process [24] +[2026-03-29 01:53:34 +0000] [24] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [24] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [26] [INFO] Started server process [26] +[2026-03-29 01:53:34 +0000] [26] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [26] [INFO] Application startup complete. +[2026-03-29 01:53:34 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 01:53:34 +0000] [27] [INFO] Started server process [27] +[2026-03-29 01:53:34 +0000] [27] [INFO] Waiting for application startup. +[2026-03-29 01:53:34 +0000] [27] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 01:53:35 +0000] [30] [INFO] Started server process [30] +[2026-03-29 01:53:35 +0000] [30] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [30] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 01:53:35 +0000] [32] [INFO] Started server process [32] +[2026-03-29 01:53:35 +0000] [32] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [32] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [42] [INFO] Booting worker with pid: 42 +[2026-03-29 01:53:35 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 01:53:35 +0000] [35] [INFO] Started server process [35] +[2026-03-29 01:53:35 +0000] [35] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [35] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [37] [INFO] Started server process [37] +[2026-03-29 01:53:35 +0000] [37] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [37] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 01:53:35 +0000] [38] [INFO] Started server process [38] +[2026-03-29 01:53:35 +0000] [38] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [38] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [48] [INFO] Booting worker with pid: 48 +[2026-03-29 01:53:35 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 01:53:35 +0000] [40] [INFO] Started server process [40] +[2026-03-29 01:53:35 +0000] [40] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [40] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [51] [INFO] Booting worker with pid: 51 +[2026-03-29 01:53:35 +0000] [42] [INFO] Started server process [42] +[2026-03-29 01:53:35 +0000] [42] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [42] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [53] [INFO] Booting worker with pid: 53 +[2026-03-29 01:53:35 +0000] [43] [INFO] Started server process [43] +[2026-03-29 01:53:35 +0000] [43] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [43] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [55] [INFO] Booting worker with pid: 55 +[2026-03-29 01:53:35 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 01:53:35 +0000] [46] [INFO] Started server process [46] +[2026-03-29 01:53:35 +0000] [46] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [46] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [48] [INFO] Started server process [48] +[2026-03-29 01:53:35 +0000] [48] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [48] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [59] [INFO] Booting worker with pid: 59 +[2026-03-29 01:53:35 +0000] [50] [INFO] Started server process [50] +[2026-03-29 01:53:35 +0000] [50] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [50] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 01:53:35 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 01:53:35 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 01:53:35 +0000] [51] [INFO] Started server process [51] +[2026-03-29 01:53:35 +0000] [51] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [51] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [66] [INFO] Booting worker with pid: 66 +[2026-03-29 01:53:35 +0000] [53] [INFO] Started server process [53] +[2026-03-29 01:53:35 +0000] [53] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [53] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 01:53:35 +0000] [68] [INFO] Booting worker with pid: 68 +[2026-03-29 01:53:35 +0000] [56] [INFO] Started server process [56] +[2026-03-29 01:53:35 +0000] [56] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [56] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [55] [INFO] Started server process [55] +[2026-03-29 01:53:35 +0000] [55] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [55] [INFO] Application startup complete. +[2026-03-29 01:53:35 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 01:53:35 +0000] [72] [INFO] Booting worker with pid: 72 +[2026-03-29 01:53:35 +0000] [74] [INFO] Booting worker with pid: 74 +[2026-03-29 01:53:35 +0000] [59] [INFO] Started server process [59] +[2026-03-29 01:53:35 +0000] [59] [INFO] Waiting for application startup. +[2026-03-29 01:53:35 +0000] [59] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [61] [INFO] Started server process [61] +[2026-03-29 01:53:36 +0000] [61] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [61] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [62] [INFO] Started server process [62] +[2026-03-29 01:53:36 +0000] [62] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [62] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [63] [INFO] Started server process [63] +[2026-03-29 01:53:36 +0000] [63] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [63] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [78] [INFO] Booting worker with pid: 78 +[2026-03-29 01:53:36 +0000] [66] [INFO] Started server process [66] +[2026-03-29 01:53:36 +0000] [66] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [66] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [67] [INFO] Started server process [67] +[2026-03-29 01:53:36 +0000] [67] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [67] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 01:53:36 +0000] [68] [INFO] Started server process [68] +[2026-03-29 01:53:36 +0000] [68] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [68] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [83] [INFO] Booting worker with pid: 83 +[2026-03-29 01:53:36 +0000] [86] [INFO] Booting worker with pid: 86 +[2026-03-29 01:53:36 +0000] [71] [INFO] Started server process [71] +[2026-03-29 01:53:36 +0000] [71] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [71] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [72] [INFO] Started server process [72] +[2026-03-29 01:53:36 +0000] [72] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [72] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [74] [INFO] Started server process [74] +[2026-03-29 01:53:36 +0000] [74] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [74] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [88] [INFO] Booting worker with pid: 88 +[2026-03-29 01:53:36 +0000] [78] [INFO] Started server process [78] +[2026-03-29 01:53:36 +0000] [78] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [78] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 01:53:36 +0000] [91] [INFO] Booting worker with pid: 91 +[2026-03-29 01:53:36 +0000] [93] [INFO] Booting worker with pid: 93 +[2026-03-29 01:53:36 +0000] [81] [INFO] Started server process [81] +[2026-03-29 01:53:36 +0000] [81] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [81] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [83] [INFO] Started server process [83] +[2026-03-29 01:53:36 +0000] [83] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [83] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 01:53:36 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 01:53:36 +0000] [98] [INFO] Booting worker with pid: 98 +[2026-03-29 01:53:36 +0000] [86] [INFO] Started server process [86] +[2026-03-29 01:53:36 +0000] [86] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [86] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [88] [INFO] Started server process [88] +[2026-03-29 01:53:36 +0000] [88] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [88] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 01:53:36 +0000] [101] [INFO] Booting worker with pid: 101 +[2026-03-29 01:53:36 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 01:53:36 +0000] [104] [INFO] Booting worker with pid: 104 +[2026-03-29 01:53:36 +0000] [90] [INFO] Started server process [90] +[2026-03-29 01:53:36 +0000] [90] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [90] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [105] [INFO] Booting worker with pid: 105 +[2026-03-29 01:53:36 +0000] [91] [INFO] Started server process [91] +[2026-03-29 01:53:36 +0000] [91] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [91] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [93] [INFO] Started server process [93] +[2026-03-29 01:53:36 +0000] [93] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [93] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 01:53:36 +0000] [95] [INFO] Started server process [95] +[2026-03-29 01:53:36 +0000] [95] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [96] [INFO] Started server process [96] +[2026-03-29 01:53:36 +0000] [96] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [95] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [96] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [98] [INFO] Started server process [98] +[2026-03-29 01:53:36 +0000] [98] [INFO] Waiting for application startup. +[2026-03-29 01:53:36 +0000] [98] [INFO] Application startup complete. +[2026-03-29 01:53:36 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 01:53:37 +0000] [114] [INFO] Booting worker with pid: 114 +[2026-03-29 01:53:37 +0000] [100] [INFO] Started server process [100] +[2026-03-29 01:53:37 +0000] [100] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [100] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [101] [INFO] Started server process [101] +[2026-03-29 01:53:37 +0000] [101] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [101] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [102] [INFO] Started server process [102] +[2026-03-29 01:53:37 +0000] [102] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [102] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [118] [INFO] Booting worker with pid: 118 +[2026-03-29 01:53:37 +0000] [120] [INFO] Booting worker with pid: 120 +[2026-03-29 01:53:37 +0000] [104] [INFO] Started server process [104] +[2026-03-29 01:53:37 +0000] [104] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [104] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [105] [INFO] Started server process [105] +[2026-03-29 01:53:37 +0000] [105] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [105] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 01:53:37 +0000] [108] [INFO] Started server process [108] +[2026-03-29 01:53:37 +0000] [108] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [108] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [123] [INFO] Booting worker with pid: 123 +[2026-03-29 01:53:37 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 01:53:37 +0000] [126] [INFO] Booting worker with pid: 126 +[2026-03-29 01:53:37 +0000] [112] [INFO] Started server process [112] +[2026-03-29 01:53:37 +0000] [112] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [112] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 01:53:37 +0000] [114] [INFO] Started server process [114] +[2026-03-29 01:53:37 +0000] [114] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [114] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [129] [INFO] Booting worker with pid: 129 +[2026-03-29 01:53:37 +0000] [132] [INFO] Booting worker with pid: 132 +[2026-03-29 01:53:37 +0000] [118] [INFO] Started server process [118] +[2026-03-29 01:53:37 +0000] [118] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [118] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [133] [INFO] Booting worker with pid: 133 +[2026-03-29 01:53:37 +0000] [120] [INFO] Started server process [120] +[2026-03-29 01:53:37 +0000] [120] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [120] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 01:53:37 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 01:53:37 +0000] [123] [INFO] Started server process [123] +[2026-03-29 01:53:37 +0000] [123] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [123] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [122] [INFO] Started server process [122] +[2026-03-29 01:53:37 +0000] [122] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [122] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 01:53:37 +0000] [124] [INFO] Started server process [124] +[2026-03-29 01:53:37 +0000] [124] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [124] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 01:53:37 +0000] [142] [INFO] Booting worker with pid: 142 +[2026-03-29 01:53:37 +0000] [127] [INFO] Started server process [127] +[2026-03-29 01:53:37 +0000] [127] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [127] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [126] [INFO] Started server process [126] +[2026-03-29 01:53:37 +0000] [126] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [144] [INFO] Booting worker with pid: 144 +[2026-03-29 01:53:37 +0000] [126] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [145] [INFO] Booting worker with pid: 145 +[2026-03-29 01:53:37 +0000] [147] [INFO] Booting worker with pid: 147 +[2026-03-29 01:53:37 +0000] [132] [INFO] Started server process [132] +[2026-03-29 01:53:37 +0000] [132] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [132] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [133] [INFO] Started server process [133] +[2026-03-29 01:53:37 +0000] [133] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [133] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [129] [INFO] Started server process [129] +[2026-03-29 01:53:37 +0000] [129] [INFO] Waiting for application startup. +[2026-03-29 01:53:37 +0000] [129] [INFO] Application startup complete. +[2026-03-29 01:53:37 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 01:53:38 +0000] [134] [INFO] Started server process [134] +[2026-03-29 01:53:38 +0000] [134] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [134] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [153] [INFO] Booting worker with pid: 153 +[2026-03-29 01:53:38 +0000] [135] [INFO] Started server process [135] +[2026-03-29 01:53:38 +0000] [135] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [135] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [139] [INFO] Started server process [139] +[2026-03-29 01:53:38 +0000] [139] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [139] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 01:53:38 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 01:53:38 +0000] [140] [INFO] Started server process [140] +[2026-03-29 01:53:38 +0000] [140] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [140] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 01:53:38 +0000] [144] [INFO] Started server process [144] +[2026-03-29 01:53:38 +0000] [144] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [144] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [142] [INFO] Started server process [142] +[2026-03-29 01:53:38 +0000] [142] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [142] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [162] [INFO] Booting worker with pid: 162 +[2026-03-29 01:53:38 +0000] [145] [INFO] Started server process [145] +[2026-03-29 01:53:38 +0000] [145] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [145] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [147] [INFO] Started server process [147] +[2026-03-29 01:53:38 +0000] [147] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [147] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [164] [INFO] Booting worker with pid: 164 +[2026-03-29 01:53:38 +0000] [165] [INFO] Booting worker with pid: 165 +[2026-03-29 01:53:38 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 01:53:38 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 01:53:38 +0000] [151] [INFO] Started server process [151] +[2026-03-29 01:53:38 +0000] [151] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [151] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [170] [INFO] Booting worker with pid: 170 +[2026-03-29 01:53:38 +0000] [171] [INFO] Booting worker with pid: 171 +[2026-03-29 01:53:38 +0000] [153] [INFO] Started server process [153] +[2026-03-29 01:53:38 +0000] [153] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [153] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 01:53:38 +0000] [174] [INFO] Booting worker with pid: 174 +[2026-03-29 01:53:38 +0000] [155] [INFO] Started server process [155] +[2026-03-29 01:53:38 +0000] [155] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [155] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [157] [INFO] Started server process [157] +[2026-03-29 01:53:38 +0000] [157] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [157] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [176] [INFO] Booting worker with pid: 176 +[2026-03-29 01:53:38 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 01:53:38 +0000] [179] [INFO] Booting worker with pid: 179 +[2026-03-29 01:53:38 +0000] [159] [INFO] Started server process [159] +[2026-03-29 01:53:38 +0000] [159] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [159] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [181] [INFO] Booting worker with pid: 181 +[2026-03-29 01:53:38 +0000] [162] [INFO] Started server process [162] +[2026-03-29 01:53:38 +0000] [162] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [162] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [164] [INFO] Started server process [164] +[2026-03-29 01:53:38 +0000] [164] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [164] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [184] [INFO] Booting worker with pid: 184 +[2026-03-29 01:53:38 +0000] [185] [INFO] Booting worker with pid: 185 +[2026-03-29 01:53:38 +0000] [165] [INFO] Started server process [165] +[2026-03-29 01:53:38 +0000] [165] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [165] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 01:53:38 +0000] [166] [INFO] Started server process [166] +[2026-03-29 01:53:38 +0000] [166] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [166] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [169] [INFO] Started server process [169] +[2026-03-29 01:53:38 +0000] [169] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [169] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [170] [INFO] Started server process [170] +[2026-03-29 01:53:38 +0000] [170] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [170] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [171] [INFO] Started server process [171] +[2026-03-29 01:53:38 +0000] [171] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [171] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [172] [INFO] Started server process [172] +[2026-03-29 01:53:38 +0000] [172] [INFO] Waiting for application startup. +[2026-03-29 01:53:38 +0000] [172] [INFO] Application startup complete. +[2026-03-29 01:53:38 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 01:53:39 +0000] [193] [INFO] Booting worker with pid: 193 +[2026-03-29 01:53:39 +0000] [174] [INFO] Started server process [174] +[2026-03-29 01:53:39 +0000] [174] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [174] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 01:53:39 +0000] [176] [INFO] Started server process [176] +[2026-03-29 01:53:39 +0000] [176] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [176] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [198] [INFO] Booting worker with pid: 198 +[2026-03-29 01:53:39 +0000] [177] [INFO] Started server process [177] +[2026-03-29 01:53:39 +0000] [177] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [177] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [179] [INFO] Started server process [179] +[2026-03-29 01:53:39 +0000] [179] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [179] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 01:53:39 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 01:53:39 +0000] [181] [INFO] Started server process [181] +[2026-03-29 01:53:39 +0000] [181] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [181] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [185] [INFO] Started server process [185] +[2026-03-29 01:53:39 +0000] [185] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [185] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 01:53:39 +0000] [184] [INFO] Started server process [184] +[2026-03-29 01:53:39 +0000] [184] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [184] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [206] [INFO] Booting worker with pid: 206 +[2026-03-29 01:53:39 +0000] [186] [INFO] Started server process [186] +[2026-03-29 01:53:39 +0000] [186] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [186] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 01:53:39 +0000] [209] [INFO] Booting worker with pid: 209 +[2026-03-29 01:53:39 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 01:53:39 +0000] [192] [INFO] Started server process [192] +[2026-03-29 01:53:39 +0000] [192] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [192] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 01:53:39 +0000] [193] [INFO] Started server process [193] +[2026-03-29 01:53:39 +0000] [193] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [193] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [214] [INFO] Booting worker with pid: 214 +[2026-03-29 01:53:39 +0000] [196] [INFO] Started server process [196] +[2026-03-29 01:53:39 +0000] [196] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [196] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [217] [INFO] Booting worker with pid: 217 +[2026-03-29 01:53:39 +0000] [198] [INFO] Started server process [198] +[2026-03-29 01:53:39 +0000] [198] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [198] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [200] [INFO] Started server process [200] +[2026-03-29 01:53:39 +0000] [200] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [200] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [202] [INFO] Started server process [202] +[2026-03-29 01:53:39 +0000] [202] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [202] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [220] [INFO] Booting worker with pid: 220 +[2026-03-29 01:53:39 +0000] [222] [INFO] Booting worker with pid: 222 +[2026-03-29 01:53:39 +0000] [205] [INFO] Started server process [205] +[2026-03-29 01:53:39 +0000] [205] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [205] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [206] [INFO] Started server process [206] +[2026-03-29 01:53:39 +0000] [206] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [206] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 01:53:39 +0000] [208] [INFO] Started server process [208] +[2026-03-29 01:53:39 +0000] [208] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [208] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [209] [INFO] Started server process [209] +[2026-03-29 01:53:39 +0000] [209] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [209] [INFO] Application startup complete. +[2026-03-29 01:53:39 +0000] [210] [INFO] Started server process [210] +[2026-03-29 01:53:39 +0000] [210] [INFO] Waiting for application startup. +[2026-03-29 01:53:39 +0000] [210] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 01:53:40 +0000] [231] [INFO] Booting worker with pid: 231 +[2026-03-29 01:53:40 +0000] [214] [INFO] Started server process [214] +[2026-03-29 01:53:40 +0000] [214] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [214] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [213] [INFO] Started server process [213] +[2026-03-29 01:53:40 +0000] [213] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [213] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [232] [INFO] Booting worker with pid: 232 +[2026-03-29 01:53:40 +0000] [233] [INFO] Booting worker with pid: 233 +[2026-03-29 01:53:40 +0000] [217] [INFO] Started server process [217] +[2026-03-29 01:53:40 +0000] [217] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [217] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 01:53:40 +0000] [236] [INFO] Booting worker with pid: 236 +[2026-03-29 01:53:40 +0000] [238] [INFO] Booting worker with pid: 238 +[2026-03-29 01:53:40 +0000] [220] [INFO] Started server process [220] +[2026-03-29 01:53:40 +0000] [220] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [220] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [240] [INFO] Booting worker with pid: 240 +[2026-03-29 01:53:40 +0000] [222] [INFO] Started server process [222] +[2026-03-29 01:53:40 +0000] [222] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [222] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [241] [INFO] Booting worker with pid: 241 +[2026-03-29 01:53:40 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 01:53:40 +0000] [228] [INFO] Started server process [228] +[2026-03-29 01:53:40 +0000] [228] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [228] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [226] [INFO] Started server process [226] +[2026-03-29 01:53:40 +0000] [226] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [226] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [245] [INFO] Booting worker with pid: 245 +[2026-03-29 01:53:40 +0000] [247] [INFO] Booting worker with pid: 247 +[2026-03-29 01:53:40 +0000] [231] [INFO] Started server process [231] +[2026-03-29 01:53:40 +0000] [231] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [231] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [232] [INFO] Started server process [232] +[2026-03-29 01:53:40 +0000] [232] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [232] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [249] [INFO] Booting worker with pid: 249 +[2026-03-29 01:53:40 +0000] [251] [INFO] Booting worker with pid: 251 +[2026-03-29 01:53:40 +0000] [233] [INFO] Started server process [233] +[2026-03-29 01:53:40 +0000] [233] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [233] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 01:53:40 +0000] [238] [INFO] Started server process [238] +[2026-03-29 01:53:40 +0000] [238] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [238] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [255] [INFO] Booting worker with pid: 255 +[2026-03-29 01:53:40 +0000] [235] [INFO] Started server process [235] +[2026-03-29 01:53:40 +0000] [235] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [235] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [236] [INFO] Started server process [236] +[2026-03-29 01:53:40 +0000] [236] [INFO] Waiting for application startup. +[2026-03-29 01:53:40 +0000] [236] [INFO] Application startup complete. +[2026-03-29 01:53:40 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 01:53:41 +0000] [240] [INFO] Started server process [240] +[2026-03-29 01:53:41 +0000] [240] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [240] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [259] [INFO] Booting worker with pid: 259 +[2026-03-29 01:53:41 +0000] [261] [INFO] Booting worker with pid: 261 +[2026-03-29 01:53:41 +0000] [262] [INFO] Booting worker with pid: 262 +[2026-03-29 01:53:41 +0000] [241] [INFO] Started server process [241] +[2026-03-29 01:53:41 +0000] [241] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [241] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [263] [INFO] Booting worker with pid: 263 +[2026-03-29 01:53:41 +0000] [264] [INFO] Booting worker with pid: 264 +[2026-03-29 01:53:41 +0000] [245] [INFO] Started server process [245] +[2026-03-29 01:53:41 +0000] [245] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [245] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [266] [INFO] Booting worker with pid: 266 +[2026-03-29 01:53:41 +0000] [268] [INFO] Booting worker with pid: 268 +[2026-03-29 01:53:41 +0000] [271] [INFO] Booting worker with pid: 271 +[2026-03-29 01:53:41 +0000] [249] [INFO] Started server process [249] +[2026-03-29 01:53:41 +0000] [249] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [249] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [247] [INFO] Started server process [247] +[2026-03-29 01:53:41 +0000] [247] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [247] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [272] [INFO] Booting worker with pid: 272 +[2026-03-29 01:53:41 +0000] [273] [INFO] Booting worker with pid: 273 +[2026-03-29 01:53:41 +0000] [243] [INFO] Started server process [243] +[2026-03-29 01:53:41 +0000] [243] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [243] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [275] [INFO] Booting worker with pid: 275 +[2026-03-29 01:53:41 +0000] [255] [INFO] Started server process [255] +[2026-03-29 01:53:41 +0000] [255] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [255] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [276] [INFO] Booting worker with pid: 276 +[2026-03-29 01:53:41 +0000] [258] [INFO] Started server process [258] +[2026-03-29 01:53:41 +0000] [258] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [258] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [278] [INFO] Booting worker with pid: 278 +[2026-03-29 01:53:41 +0000] [251] [INFO] Started server process [251] +[2026-03-29 01:53:41 +0000] [280] [INFO] Booting worker with pid: 280 +[2026-03-29 01:53:41 +0000] [251] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [251] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [253] [INFO] Started server process [253] +[2026-03-29 01:53:41 +0000] [253] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [253] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [282] [INFO] Booting worker with pid: 282 +[2026-03-29 01:53:41 +0000] [283] [INFO] Booting worker with pid: 283 +[2026-03-29 01:53:41 +0000] [284] [INFO] Booting worker with pid: 284 +[2026-03-29 01:53:41 +0000] [262] [INFO] Started server process [262] +[2026-03-29 01:53:41 +0000] [262] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [262] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [286] [INFO] Booting worker with pid: 286 +[2026-03-29 01:53:41 +0000] [287] [INFO] Booting worker with pid: 287 +[2026-03-29 01:53:41 +0000] [288] [INFO] Booting worker with pid: 288 +[2026-03-29 01:53:41 +0000] [289] [INFO] Booting worker with pid: 289 +[2026-03-29 01:53:41 +0000] [261] [INFO] Started server process [261] +[2026-03-29 01:53:41 +0000] [261] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [261] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [266] [INFO] Started server process [266] +[2026-03-29 01:53:41 +0000] [266] [INFO] Waiting for application startup. +[2026-03-29 01:53:41 +0000] [266] [INFO] Application startup complete. +[2026-03-29 01:53:41 +0000] [292] [INFO] Booting worker with pid: 292 +[2026-03-29 01:53:42 +0000] [264] [INFO] Started server process [264] +[2026-03-29 01:53:42 +0000] [264] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [264] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [275] [INFO] Started server process [275] +[2026-03-29 01:53:42 +0000] [275] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [275] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [296] [INFO] Booting worker with pid: 296 +[2026-03-29 01:53:42 +0000] [297] [INFO] Booting worker with pid: 297 +[2026-03-29 01:53:42 +0000] [259] [INFO] Started server process [259] +[2026-03-29 01:53:42 +0000] [259] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [259] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [273] [INFO] Started server process [273] +[2026-03-29 01:53:42 +0000] [273] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [273] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [299] [INFO] Booting worker with pid: 299 +[2026-03-29 01:53:42 +0000] [271] [INFO] Started server process [271] +[2026-03-29 01:53:42 +0000] [271] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [271] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [263] [INFO] Started server process [263] +[2026-03-29 01:53:42 +0000] [263] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [263] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [303] [INFO] Booting worker with pid: 303 +[2026-03-29 01:53:42 +0000] [276] [INFO] Started server process [276] +[2026-03-29 01:53:42 +0000] [276] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [276] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [305] [INFO] Booting worker with pid: 305 +[2026-03-29 01:53:42 +0000] [280] [INFO] Started server process [280] +[2026-03-29 01:53:42 +0000] [280] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [280] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [307] [INFO] Booting worker with pid: 307 +[2026-03-29 01:53:42 +0000] [268] [INFO] Started server process [268] +[2026-03-29 01:53:42 +0000] [268] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [268] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [272] [INFO] Started server process [272] +[2026-03-29 01:53:42 +0000] [272] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [272] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [309] [INFO] Booting worker with pid: 309 +[2026-03-29 01:53:42 +0000] [289] [INFO] Started server process [289] +[2026-03-29 01:53:42 +0000] [289] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [289] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [283] [INFO] Started server process [283] +[2026-03-29 01:53:42 +0000] [283] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [283] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [313] [INFO] Booting worker with pid: 313 +[2026-03-29 01:53:42 +0000] [292] [INFO] Started server process [292] +[2026-03-29 01:53:42 +0000] [292] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [292] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [284] [INFO] Started server process [284] +[2026-03-29 01:53:42 +0000] [284] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [284] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [282] [INFO] Started server process [282] +[2026-03-29 01:53:42 +0000] [282] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [282] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [288] [INFO] Started server process [288] +[2026-03-29 01:53:42 +0000] [288] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [288] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [317] [INFO] Booting worker with pid: 317 +[2026-03-29 01:53:42 +0000] [318] [INFO] Booting worker with pid: 318 +[2026-03-29 01:53:42 +0000] [319] [INFO] Booting worker with pid: 319 +[2026-03-29 01:53:42 +0000] [321] [INFO] Booting worker with pid: 321 +[2026-03-29 01:53:42 +0000] [297] [INFO] Started server process [297] +[2026-03-29 01:53:42 +0000] [297] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [297] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [287] [INFO] Started server process [287] +[2026-03-29 01:53:42 +0000] [287] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [287] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [323] [INFO] Booting worker with pid: 323 +[2026-03-29 01:53:42 +0000] [303] [INFO] Started server process [303] +[2026-03-29 01:53:42 +0000] [303] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [303] [INFO] Application startup complete. +[2026-03-29 01:53:42 +0000] [299] [INFO] Started server process [299] +[2026-03-29 01:53:42 +0000] [299] [INFO] Waiting for application startup. +[2026-03-29 01:53:42 +0000] [299] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [327] [INFO] Booting worker with pid: 327 +[2026-03-29 01:53:43 +0000] [296] [INFO] Started server process [296] +[2026-03-29 01:53:43 +0000] [296] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [296] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [328] [INFO] Booting worker with pid: 328 +[2026-03-29 01:53:43 +0000] [286] [INFO] Started server process [286] +[2026-03-29 01:53:43 +0000] [286] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [286] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [330] [INFO] Booting worker with pid: 330 +[2026-03-29 01:53:43 +0000] [331] [INFO] Booting worker with pid: 331 +[2026-03-29 01:53:43 +0000] [332] [INFO] Booting worker with pid: 332 +[2026-03-29 01:53:43 +0000] [336] [INFO] Booting worker with pid: 336 +[2026-03-29 01:53:43 +0000] [309] [INFO] Started server process [309] +[2026-03-29 01:53:43 +0000] [309] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [309] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [307] [INFO] Started server process [307] +[2026-03-29 01:53:43 +0000] [307] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [307] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [337] [INFO] Booting worker with pid: 337 +[2026-03-29 01:53:43 +0000] [338] [INFO] Booting worker with pid: 338 +[2026-03-29 01:53:43 +0000] [278] [INFO] Started server process [278] +[2026-03-29 01:53:43 +0000] [278] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [278] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [340] [INFO] Booting worker with pid: 340 +[2026-03-29 01:53:43 +0000] [317] [INFO] Started server process [317] +[2026-03-29 01:53:43 +0000] [317] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [317] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [305] [INFO] Started server process [305] +[2026-03-29 01:53:43 +0000] [305] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [342] [INFO] Booting worker with pid: 342 +[2026-03-29 01:53:43 +0000] [305] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [343] [INFO] Booting worker with pid: 343 +[2026-03-29 01:53:43 +0000] [344] [INFO] Booting worker with pid: 344 +[2026-03-29 01:53:43 +0000] [347] [INFO] Booting worker with pid: 347 +[2026-03-29 01:53:43 +0000] [313] [INFO] Started server process [313] +[2026-03-29 01:53:43 +0000] [313] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [313] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [348] [INFO] Booting worker with pid: 348 +[2026-03-29 01:53:43 +0000] [349] [INFO] Booting worker with pid: 349 +[2026-03-29 01:53:43 +0000] [319] [INFO] Started server process [319] +[2026-03-29 01:53:43 +0000] [319] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [319] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [351] [INFO] Booting worker with pid: 351 +[2026-03-29 01:53:43 +0000] [352] [INFO] Booting worker with pid: 352 +[2026-03-29 01:53:43 +0000] [318] [INFO] Started server process [318] +[2026-03-29 01:53:43 +0000] [318] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [318] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [354] [INFO] Booting worker with pid: 354 +[2026-03-29 01:53:43 +0000] [323] [INFO] Started server process [323] +[2026-03-29 01:53:43 +0000] [323] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [323] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [356] [INFO] Booting worker with pid: 356 +[2026-03-29 01:53:43 +0000] [338] [INFO] Started server process [338] +[2026-03-29 01:53:43 +0000] [338] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [338] [INFO] Application startup complete. +[2026-03-29 01:53:43 +0000] [327] [INFO] Started server process [327] +[2026-03-29 01:53:43 +0000] [327] [INFO] Waiting for application startup. +[2026-03-29 01:53:43 +0000] [327] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [360] [INFO] Booting worker with pid: 360 +[2026-03-29 01:53:44 +0000] [332] [INFO] Started server process [332] +[2026-03-29 01:53:44 +0000] [332] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [332] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [330] [INFO] Started server process [330] +[2026-03-29 01:53:44 +0000] [330] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [330] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [361] [INFO] Booting worker with pid: 361 +[2026-03-29 01:53:44 +0000] [321] [INFO] Started server process [321] +[2026-03-29 01:53:44 +0000] [321] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [321] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [365] [INFO] Booting worker with pid: 365 +[2026-03-29 01:53:44 +0000] [340] [INFO] Started server process [340] +[2026-03-29 01:53:44 +0000] [340] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [340] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [367] [INFO] Booting worker with pid: 367 +[2026-03-29 01:53:44 +0000] [342] [INFO] Started server process [342] +[2026-03-29 01:53:44 +0000] [368] [INFO] Booting worker with pid: 368 +[2026-03-29 01:53:44 +0000] [328] [INFO] Started server process [328] +[2026-03-29 01:53:44 +0000] [328] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [328] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [342] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [342] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [371] [INFO] Booting worker with pid: 371 +[2026-03-29 01:53:44 +0000] [349] [INFO] Started server process [349] +[2026-03-29 01:53:44 +0000] [349] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [349] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [343] [INFO] Started server process [343] +[2026-03-29 01:53:44 +0000] [343] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [343] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [372] [INFO] Booting worker with pid: 372 +[2026-03-29 01:53:44 +0000] [331] [INFO] Started server process [331] +[2026-03-29 01:53:44 +0000] [331] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [331] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [337] [INFO] Started server process [337] +[2026-03-29 01:53:44 +0000] [337] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [337] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [375] [INFO] Booting worker with pid: 375 +[2026-03-29 01:53:44 +0000] [376] [INFO] Booting worker with pid: 376 +[2026-03-29 01:53:44 +0000] [377] [INFO] Booting worker with pid: 377 +[2026-03-29 01:53:44 +0000] [378] [INFO] Booting worker with pid: 378 +[2026-03-29 01:53:44 +0000] [348] [INFO] Started server process [348] +[2026-03-29 01:53:44 +0000] [348] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [348] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [360] [INFO] Started server process [360] +[2026-03-29 01:53:44 +0000] [360] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [360] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [381] [INFO] Booting worker with pid: 381 +[2026-03-29 01:53:44 +0000] [384] [INFO] Booting worker with pid: 384 +[2026-03-29 01:53:44 +0000] [361] [INFO] Started server process [361] +[2026-03-29 01:53:44 +0000] [361] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [361] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [386] [INFO] Booting worker with pid: 386 +[2026-03-29 01:53:44 +0000] [336] [INFO] Started server process [336] +[2026-03-29 01:53:44 +0000] [336] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [336] [INFO] Application startup complete. +[2026-03-29 01:53:44 +0000] [351] [INFO] Started server process [351] +[2026-03-29 01:53:44 +0000] [351] [INFO] Waiting for application startup. +[2026-03-29 01:53:44 +0000] [351] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [387] [INFO] Booting worker with pid: 387 +[2026-03-29 01:53:45 +0000] [389] [INFO] Booting worker with pid: 389 +[2026-03-29 01:53:45 +0000] [356] [INFO] Started server process [356] +[2026-03-29 01:53:45 +0000] [356] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [356] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [393] [INFO] Booting worker with pid: 393 +[2026-03-29 01:53:45 +0000] [352] [INFO] Started server process [352] +[2026-03-29 01:53:45 +0000] [352] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [365] [INFO] Started server process [365] +[2026-03-29 01:53:45 +0000] [365] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [365] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [352] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [394] [INFO] Booting worker with pid: 394 +[2026-03-29 01:53:45 +0000] [354] [INFO] Started server process [354] +[2026-03-29 01:53:45 +0000] [354] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [354] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [396] [INFO] Booting worker with pid: 396 +[2026-03-29 01:53:45 +0000] [344] [INFO] Started server process [344] +[2026-03-29 01:53:45 +0000] [344] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [344] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [398] [INFO] Booting worker with pid: 398 +[2026-03-29 01:53:45 +0000] [399] [INFO] Booting worker with pid: 399 +[2026-03-29 01:53:45 +0000] [401] [INFO] Booting worker with pid: 401 +[2026-03-29 01:53:45 +0000] [378] [INFO] Started server process [378] +[2026-03-29 01:53:45 +0000] [378] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [378] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [368] [INFO] Started server process [368] +[2026-03-29 01:53:45 +0000] [368] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [368] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [402] [INFO] Booting worker with pid: 402 +[2026-03-29 01:53:45 +0000] [403] [INFO] Booting worker with pid: 403 +[2026-03-29 01:53:45 +0000] [404] [INFO] Booting worker with pid: 404 +[2026-03-29 01:53:45 +0000] [371] [INFO] Started server process [371] +[2026-03-29 01:53:45 +0000] [371] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [371] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [406] [INFO] Booting worker with pid: 406 +[2026-03-29 01:53:45 +0000] [407] [INFO] Booting worker with pid: 407 +[2026-03-29 01:53:45 +0000] [377] [INFO] Started server process [377] +[2026-03-29 01:53:45 +0000] [377] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [377] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [410] [INFO] Booting worker with pid: 410 +[2026-03-29 01:53:45 +0000] [375] [INFO] Started server process [375] +[2026-03-29 01:53:45 +0000] [375] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [375] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [376] [INFO] Started server process [376] +[2026-03-29 01:53:45 +0000] [376] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [376] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [387] [INFO] Started server process [387] +[2026-03-29 01:53:45 +0000] [387] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [387] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [414] [INFO] Booting worker with pid: 414 +[2026-03-29 01:53:45 +0000] [394] [INFO] Started server process [394] +[2026-03-29 01:53:45 +0000] [394] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [394] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [367] [INFO] Started server process [367] +[2026-03-29 01:53:45 +0000] [367] [INFO] Waiting for application startup. +[2026-03-29 01:53:45 +0000] [367] [INFO] Application startup complete. +[2026-03-29 01:53:45 +0000] [418] [INFO] Booting worker with pid: 418 +[2026-03-29 01:53:46 +0000] [421] [INFO] Booting worker with pid: 421 +[2026-03-29 01:53:46 +0000] [384] [INFO] Started server process [384] +[2026-03-29 01:53:46 +0000] [384] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [384] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [386] [INFO] Started server process [386] +[2026-03-29 01:53:46 +0000] [386] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [399] [INFO] Started server process [399] +[2026-03-29 01:53:46 +0000] [399] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [399] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [386] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [423] [INFO] Booting worker with pid: 423 +[2026-03-29 01:53:46 +0000] [389] [INFO] Started server process [389] +[2026-03-29 01:53:46 +0000] [389] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [389] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [396] [INFO] Started server process [396] +[2026-03-29 01:53:46 +0000] [396] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [396] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [425] [INFO] Booting worker with pid: 425 +[2026-03-29 01:53:46 +0000] [403] [INFO] Started server process [403] +[2026-03-29 01:53:46 +0000] [403] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [403] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [427] [INFO] Booting worker with pid: 427 +[2026-03-29 01:53:46 +0000] [347] [INFO] Started server process [347] +[2026-03-29 01:53:46 +0000] [347] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [347] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [406] [INFO] Started server process [406] +[2026-03-29 01:53:46 +0000] [406] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [406] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [429] [INFO] Booting worker with pid: 429 +[2026-03-29 01:53:46 +0000] [431] [INFO] Booting worker with pid: 431 +[2026-03-29 01:53:46 +0000] [372] [INFO] Started server process [372] +[2026-03-29 01:53:46 +0000] [372] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [372] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [433] [INFO] Booting worker with pid: 433 +[2026-03-29 01:53:46 +0000] [393] [INFO] Started server process [393] +[2026-03-29 01:53:46 +0000] [393] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [393] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [435] [INFO] Booting worker with pid: 435 +[2026-03-29 01:53:46 +0000] [381] [INFO] Started server process [381] +[2026-03-29 01:53:46 +0000] [381] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [381] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [407] [INFO] Started server process [407] +[2026-03-29 01:53:46 +0000] [407] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [407] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [418] [INFO] Started server process [418] +[2026-03-29 01:53:46 +0000] [418] [INFO] Waiting for application startup. +[2026-03-29 01:53:46 +0000] [418] [INFO] Application startup complete. +[2026-03-29 01:53:46 +0000] [438] [INFO] Booting worker with pid: 438 +[2026-03-29 01:53:46 +0000] [439] [INFO] Booting worker with pid: 439 +[2026-03-29 01:53:46 +0000] [440] [INFO] Booting worker with pid: 440 +[2026-03-29 01:53:46 +0000] [442] [INFO] Booting worker with pid: 442 +[2026-03-29 01:53:47 +0000] [425] [INFO] Started server process [425] +[2026-03-29 01:53:47 +0000] [425] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [425] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [410] [INFO] Started server process [410] +[2026-03-29 01:53:47 +0000] [410] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [410] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [444] [INFO] Booting worker with pid: 444 +[2026-03-29 01:53:47 +0000] [445] [INFO] Booting worker with pid: 445 +[2026-03-29 01:53:47 +0000] [427] [INFO] Started server process [427] +[2026-03-29 01:53:47 +0000] [427] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [427] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [447] [INFO] Booting worker with pid: 447 +[2026-03-29 01:53:47 +0000] [448] [INFO] Booting worker with pid: 448 +[2026-03-29 01:53:47 +0000] [449] [INFO] Booting worker with pid: 449 +[2026-03-29 01:53:47 +0000] [423] [INFO] Started server process [423] +[2026-03-29 01:53:47 +0000] [423] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [423] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [452] [INFO] Booting worker with pid: 452 +[2026-03-29 01:53:47 +0000] [454] [INFO] Booting worker with pid: 454 +[2026-03-29 01:53:47 +0000] [455] [INFO] Booting worker with pid: 455 +[2026-03-29 01:53:47 +0000] [402] [INFO] Started server process [402] +[2026-03-29 01:53:47 +0000] [402] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [402] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [456] [INFO] Booting worker with pid: 456 +[2026-03-29 01:53:47 +0000] [458] [INFO] Booting worker with pid: 458 +[2026-03-29 01:53:47 +0000] [459] [INFO] Booting worker with pid: 459 +[2026-03-29 01:53:47 +0000] [461] [INFO] Booting worker with pid: 461 +[2026-03-29 01:53:47 +0000] [404] [INFO] Started server process [404] +[2026-03-29 01:53:47 +0000] [404] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [404] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [462] [INFO] Booting worker with pid: 462 +[2026-03-29 01:53:47 +0000] [438] [INFO] Started server process [438] +[2026-03-29 01:53:47 +0000] [438] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [438] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [463] [INFO] Booting worker with pid: 463 +[2026-03-29 01:53:47 +0000] [401] [INFO] Started server process [401] +[2026-03-29 01:53:47 +0000] [401] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [401] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [429] [INFO] Started server process [429] +[2026-03-29 01:53:47 +0000] [429] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [429] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [465] [INFO] Booting worker with pid: 465 +[2026-03-29 01:53:47 +0000] [414] [INFO] Started server process [414] +[2026-03-29 01:53:47 +0000] [414] [INFO] Waiting for application startup. +[2026-03-29 01:53:47 +0000] [414] [INFO] Application startup complete. +[2026-03-29 01:53:47 +0000] [467] [INFO] Booting worker with pid: 467 +[2026-03-29 01:53:48 +0000] [469] [INFO] Booting worker with pid: 469 +[2026-03-29 01:53:48 +0000] [398] [INFO] Started server process [398] +[2026-03-29 01:53:48 +0000] [398] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [398] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [470] [INFO] Booting worker with pid: 470 +[2026-03-29 01:53:48 +0000] [433] [INFO] Started server process [433] +[2026-03-29 01:53:48 +0000] [433] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [433] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [472] [INFO] Booting worker with pid: 472 +[2026-03-29 01:53:48 +0000] [473] [INFO] Booting worker with pid: 473 +[2026-03-29 01:53:48 +0000] [474] [INFO] Booting worker with pid: 474 +[2026-03-29 01:53:48 +0000] [421] [INFO] Started server process [421] +[2026-03-29 01:53:48 +0000] [421] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [421] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [476] [INFO] Booting worker with pid: 476 +[2026-03-29 01:53:48 +0000] [435] [INFO] Started server process [435] +[2026-03-29 01:53:48 +0000] [435] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [435] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [481] [INFO] Booting worker with pid: 481 +[2026-03-29 01:53:48 +0000] [448] [INFO] Started server process [448] +[2026-03-29 01:53:48 +0000] [448] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [448] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [463] [INFO] Started server process [463] +[2026-03-29 01:53:48 +0000] [463] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [463] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [483] [INFO] Booting worker with pid: 483 +[2026-03-29 01:53:48 +0000] [439] [INFO] Started server process [439] +[2026-03-29 01:53:48 +0000] [439] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [439] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [442] [INFO] Started server process [442] +[2026-03-29 01:53:48 +0000] [442] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [442] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [484] [INFO] Booting worker with pid: 484 +[2026-03-29 01:53:48 +0000] [485] [INFO] Booting worker with pid: 485 +[2026-03-29 01:53:48 +0000] [458] [INFO] Started server process [458] +[2026-03-29 01:53:48 +0000] [458] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [458] [INFO] Application startup complete. +[2026-03-29 01:53:48 +0000] [487] [INFO] Booting worker with pid: 487 +[2026-03-29 01:53:48 +0000] [470] [INFO] Started server process [470] +[2026-03-29 01:53:48 +0000] [470] [INFO] Waiting for application startup. +[2026-03-29 01:53:48 +0000] [470] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [490] [INFO] Booting worker with pid: 490 +[2026-03-29 01:53:49 +0000] [431] [INFO] Started server process [431] +[2026-03-29 01:53:49 +0000] [431] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [431] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [491] [INFO] Booting worker with pid: 491 +[2026-03-29 01:53:49 +0000] [456] [INFO] Started server process [456] +[2026-03-29 01:53:49 +0000] [456] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [456] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [493] [INFO] Booting worker with pid: 493 +[2026-03-29 01:53:49 +0000] [447] [INFO] Started server process [447] +[2026-03-29 01:53:49 +0000] [447] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [447] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [483] [INFO] Started server process [483] +[2026-03-29 01:53:49 +0000] [483] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [483] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [465] [INFO] Started server process [465] +[2026-03-29 01:53:49 +0000] [465] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [465] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [476] [INFO] Started server process [476] +[2026-03-29 01:53:49 +0000] [476] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [476] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [454] [INFO] Started server process [454] +[2026-03-29 01:53:49 +0000] [454] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [454] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [474] [INFO] Started server process [474] +[2026-03-29 01:53:49 +0000] [474] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [474] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [487] [INFO] Started server process [487] +[2026-03-29 01:53:49 +0000] [487] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [487] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [445] [INFO] Started server process [445] +[2026-03-29 01:53:49 +0000] [445] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [445] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [455] [INFO] Started server process [455] +[2026-03-29 01:53:49 +0000] [455] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [455] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [462] [INFO] Started server process [462] +[2026-03-29 01:53:49 +0000] [462] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [462] [INFO] Application startup complete. +[2026-03-29 01:53:49 +0000] [440] [INFO] Started server process [440] +[2026-03-29 01:53:49 +0000] [440] [INFO] Waiting for application startup. +[2026-03-29 01:53:49 +0000] [440] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [493] [INFO] Started server process [493] +[2026-03-29 01:53:50 +0000] [493] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [493] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [461] [INFO] Started server process [461] +[2026-03-29 01:53:50 +0000] [461] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [461] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [484] [INFO] Started server process [484] +[2026-03-29 01:53:50 +0000] [484] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [484] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [469] [INFO] Started server process [469] +[2026-03-29 01:53:50 +0000] [469] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [469] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [449] [INFO] Started server process [449] +[2026-03-29 01:53:50 +0000] [449] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [449] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [473] [INFO] Started server process [473] +[2026-03-29 01:53:50 +0000] [473] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [473] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [459] [INFO] Started server process [459] +[2026-03-29 01:53:50 +0000] [459] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [459] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [472] [INFO] Started server process [472] +[2026-03-29 01:53:50 +0000] [472] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [472] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [444] [INFO] Started server process [444] +[2026-03-29 01:53:50 +0000] [444] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [444] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [452] [INFO] Started server process [452] +[2026-03-29 01:53:50 +0000] [452] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [452] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [485] [INFO] Started server process [485] +[2026-03-29 01:53:50 +0000] [485] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [485] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [467] [INFO] Started server process [467] +[2026-03-29 01:53:50 +0000] [467] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [467] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [481] [INFO] Started server process [481] +[2026-03-29 01:53:50 +0000] [481] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [481] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [491] [INFO] Started server process [491] +[2026-03-29 01:53:50 +0000] [491] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [491] [INFO] Application startup complete. +[2026-03-29 01:53:50 +0000] [490] [INFO] Started server process [490] +[2026-03-29 01:53:50 +0000] [490] [INFO] Waiting for application startup. +[2026-03-29 01:53:50 +0000] [490] [INFO] Application startup complete. +[2026-03-29 01:54:07 +0000] [140] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1051,16 +1075,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [9] [ERROR] Exception in ASGI application +[2026-03-29 01:54:07 +0000] [108] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1110,16 +1131,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [356] [ERROR] Exception in ASGI application +[2026-03-29 01:54:07 +0000] [144] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1169,16 +1187,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [371] [ERROR] Exception in ASGI application +[2026-03-29 01:54:07 +0000] [185] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1228,16 +1243,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [462] [ERROR] Exception in ASGI application +[2026-03-29 01:54:07 +0000] [309] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1287,16 +1299,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [291] [ERROR] Exception in ASGI application +[2026-03-29 01:54:07 +0000] [484] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1346,16 +1355,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [455] [ERROR] Exception in ASGI application +[2026-03-29 01:54:07 +0000] [14] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1405,16 +1411,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [141] [ERROR] Exception in ASGI application +[2026-03-29 01:54:25 +0000] [343] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1464,1924 +1467,9 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [478] [INFO] Started server process [478] -[2026-03-26 01:10:10 +0000] [478] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [478] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [185] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [74] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [322] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [193] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [262] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [470] [INFO] Started server process [470] -[2026-03-26 01:10:10 +0000] [470] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [45] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [470] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [127] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [424] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:10 +0000] [490] [INFO] Started server process [490] -[2026-03-26 01:10:10 +0000] [490] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [490] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [488] [INFO] Started server process [488] -[2026-03-26 01:10:10 +0000] [488] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [488] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [481] [INFO] Started server process [481] -[2026-03-26 01:10:10 +0000] [481] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [481] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [461] [INFO] Started server process [461] -[2026-03-26 01:10:10 +0000] [461] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [461] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [496] [INFO] Started server process [496] -[2026-03-26 01:10:10 +0000] [496] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [496] [INFO] Application startup complete. -[2026-03-26 01:10:10 +0000] [492] [INFO] Started server process [492] -[2026-03-26 01:10:10 +0000] [492] [INFO] Waiting for application startup. -[2026-03-26 01:10:10 +0000] [492] [INFO] Application startup complete. -[2026-03-26 01:10:28 +0000] [74] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:28 +0000] [383] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:28 +0000] [194] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:28 +0000] [119] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:28 +0000] [413] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [43] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [462] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [411] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [324] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [23] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [409] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [476] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [174] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [8] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [270] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [41] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [319] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [295] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [399] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [281] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [36] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [36] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [416] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:10:45 +0000] [267] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect diff --git a/site/static/logs/mixed/16384/flask.log b/site/static/logs/mixed/16384/flask.log index 595ece38..a23f2d6a 100644 --- a/site/static/logs/mixed/16384/flask.log +++ b/site/static/logs/mixed/16384/flask.log @@ -1,263 +1,263 @@ -[2026-03-26 01:18:44 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 01:18:44 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 01:18:44 +0000] [1] [INFO] Using worker: sync -[2026-03-26 01:18:44 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 01:18:44 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 01:18:44 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 01:18:44 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 01:18:44 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 01:18:44 +0000] [12] [INFO] Booting worker with pid: 12 -[2026-03-26 01:18:44 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 01:18:44 +0000] [14] [INFO] Booting worker with pid: 14 -[2026-03-26 01:18:44 +0000] [15] [INFO] Booting worker with pid: 15 -[2026-03-26 01:18:44 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 01:18:44 +0000] [17] [INFO] Booting worker with pid: 17 -[2026-03-26 01:18:44 +0000] [18] [INFO] Booting worker with pid: 18 -[2026-03-26 01:18:45 +0000] [19] [INFO] Booting worker with pid: 19 -[2026-03-26 01:18:45 +0000] [20] [INFO] Booting worker with pid: 20 -[2026-03-26 01:18:45 +0000] [21] [INFO] Booting worker with pid: 21 -[2026-03-26 01:18:45 +0000] [22] [INFO] Booting worker with pid: 22 -[2026-03-26 01:18:45 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 01:18:45 +0000] [24] [INFO] Booting worker with pid: 24 -[2026-03-26 01:18:45 +0000] [25] [INFO] Booting worker with pid: 25 -[2026-03-26 01:18:45 +0000] [26] [INFO] Booting worker with pid: 26 -[2026-03-26 01:18:45 +0000] [27] [INFO] Booting worker with pid: 27 -[2026-03-26 01:18:45 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 01:18:45 +0000] [29] [INFO] Booting worker with pid: 29 -[2026-03-26 01:18:45 +0000] [30] [INFO] Booting worker with pid: 30 -[2026-03-26 01:18:45 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 01:18:45 +0000] [32] [INFO] Booting worker with pid: 32 -[2026-03-26 01:18:45 +0000] [33] [INFO] Booting worker with pid: 33 -[2026-03-26 01:18:45 +0000] [34] [INFO] Booting worker with pid: 34 -[2026-03-26 01:18:45 +0000] [35] [INFO] Booting worker with pid: 35 -[2026-03-26 01:18:45 +0000] [36] [INFO] Booting worker with pid: 36 -[2026-03-26 01:18:45 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 01:18:45 +0000] [38] [INFO] Booting worker with pid: 38 -[2026-03-26 01:18:45 +0000] [39] [INFO] Booting worker with pid: 39 -[2026-03-26 01:18:46 +0000] [40] [INFO] Booting worker with pid: 40 -[2026-03-26 01:18:46 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 01:18:46 +0000] [42] [INFO] Booting worker with pid: 42 -[2026-03-26 01:18:46 +0000] [43] [INFO] Booting worker with pid: 43 -[2026-03-26 01:18:46 +0000] [44] [INFO] Booting worker with pid: 44 -[2026-03-26 01:18:46 +0000] [45] [INFO] Booting worker with pid: 45 -[2026-03-26 01:18:46 +0000] [46] [INFO] Booting worker with pid: 46 -[2026-03-26 01:18:46 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 01:18:46 +0000] [48] [INFO] Booting worker with pid: 48 -[2026-03-26 01:18:46 +0000] [49] [INFO] Booting worker with pid: 49 -[2026-03-26 01:18:46 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 01:18:46 +0000] [51] [INFO] Booting worker with pid: 51 -[2026-03-26 01:18:46 +0000] [52] [INFO] Booting worker with pid: 52 -[2026-03-26 01:18:46 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 01:18:46 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 01:18:46 +0000] [55] [INFO] Booting worker with pid: 55 -[2026-03-26 01:18:46 +0000] [56] [INFO] Booting worker with pid: 56 -[2026-03-26 01:18:46 +0000] [57] [INFO] Booting worker with pid: 57 -[2026-03-26 01:18:46 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 01:18:46 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 01:18:47 +0000] [60] [INFO] Booting worker with pid: 60 -[2026-03-26 01:18:47 +0000] [61] [INFO] Booting worker with pid: 61 -[2026-03-26 01:18:47 +0000] [62] [INFO] Booting worker with pid: 62 -[2026-03-26 01:18:47 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 01:18:47 +0000] [64] [INFO] Booting worker with pid: 64 -[2026-03-26 01:18:47 +0000] [65] [INFO] Booting worker with pid: 65 -[2026-03-26 01:18:47 +0000] [66] [INFO] Booting worker with pid: 66 -[2026-03-26 01:18:47 +0000] [67] [INFO] Booting worker with pid: 67 -[2026-03-26 01:18:47 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 01:18:47 +0000] [69] [INFO] Booting worker with pid: 69 -[2026-03-26 01:18:47 +0000] [70] [INFO] Booting worker with pid: 70 -[2026-03-26 01:18:47 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 01:18:47 +0000] [72] [INFO] Booting worker with pid: 72 -[2026-03-26 01:18:47 +0000] [73] [INFO] Booting worker with pid: 73 -[2026-03-26 01:18:47 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 01:18:47 +0000] [75] [INFO] Booting worker with pid: 75 -[2026-03-26 01:18:47 +0000] [76] [INFO] Booting worker with pid: 76 -[2026-03-26 01:18:47 +0000] [77] [INFO] Booting worker with pid: 77 -[2026-03-26 01:18:47 +0000] [78] [INFO] Booting worker with pid: 78 -[2026-03-26 01:18:47 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 01:18:47 +0000] [80] [INFO] Booting worker with pid: 80 -[2026-03-26 01:18:47 +0000] [81] [INFO] Booting worker with pid: 81 -[2026-03-26 01:18:47 +0000] [82] [INFO] Booting worker with pid: 82 -[2026-03-26 01:18:48 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 01:18:48 +0000] [84] [INFO] Booting worker with pid: 84 -[2026-03-26 01:18:48 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 01:18:48 +0000] [86] [INFO] Booting worker with pid: 86 -[2026-03-26 01:18:48 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 01:18:48 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 01:18:48 +0000] [89] [INFO] Booting worker with pid: 89 -[2026-03-26 01:18:48 +0000] [90] [INFO] Booting worker with pid: 90 -[2026-03-26 01:18:48 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 01:18:48 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 01:18:48 +0000] [93] [INFO] Booting worker with pid: 93 -[2026-03-26 01:18:48 +0000] [94] [INFO] Booting worker with pid: 94 -[2026-03-26 01:18:48 +0000] [95] [INFO] Booting worker with pid: 95 -[2026-03-26 01:18:48 +0000] [96] [INFO] Booting worker with pid: 96 -[2026-03-26 01:18:48 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 01:18:48 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 01:18:48 +0000] [99] [INFO] Booting worker with pid: 99 -[2026-03-26 01:18:48 +0000] [100] [INFO] Booting worker with pid: 100 -[2026-03-26 01:18:49 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 01:18:49 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 01:18:49 +0000] [103] [INFO] Booting worker with pid: 103 -[2026-03-26 01:18:49 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 01:18:49 +0000] [105] [INFO] Booting worker with pid: 105 -[2026-03-26 01:18:49 +0000] [106] [INFO] Booting worker with pid: 106 -[2026-03-26 01:18:49 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 01:18:49 +0000] [108] [INFO] Booting worker with pid: 108 -[2026-03-26 01:18:49 +0000] [109] [INFO] Booting worker with pid: 109 -[2026-03-26 01:18:49 +0000] [110] [INFO] Booting worker with pid: 110 -[2026-03-26 01:18:49 +0000] [111] [INFO] Booting worker with pid: 111 -[2026-03-26 01:18:49 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 01:18:49 +0000] [113] [INFO] Booting worker with pid: 113 -[2026-03-26 01:18:49 +0000] [114] [INFO] Booting worker with pid: 114 -[2026-03-26 01:18:49 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 01:18:49 +0000] [116] [INFO] Booting worker with pid: 116 -[2026-03-26 01:18:50 +0000] [117] [INFO] Booting worker with pid: 117 -[2026-03-26 01:18:50 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 01:18:50 +0000] [119] [INFO] Booting worker with pid: 119 -[2026-03-26 01:18:50 +0000] [120] [INFO] Booting worker with pid: 120 -[2026-03-26 01:18:50 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 01:18:50 +0000] [122] [INFO] Booting worker with pid: 122 -[2026-03-26 01:18:50 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 01:18:50 +0000] [124] [INFO] Booting worker with pid: 124 -[2026-03-26 01:18:50 +0000] [125] [INFO] Booting worker with pid: 125 -[2026-03-26 01:18:50 +0000] [126] [INFO] Booting worker with pid: 126 -[2026-03-26 01:18:50 +0000] [127] [INFO] Booting worker with pid: 127 -[2026-03-26 01:18:50 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 01:18:50 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 01:18:50 +0000] [130] [INFO] Booting worker with pid: 130 -[2026-03-26 01:18:50 +0000] [131] [INFO] Booting worker with pid: 131 -[2026-03-26 01:18:50 +0000] [132] [INFO] Booting worker with pid: 132 -[2026-03-26 01:18:50 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 01:18:50 +0000] [134] [INFO] Booting worker with pid: 134 -[2026-03-26 01:18:50 +0000] [135] [INFO] Booting worker with pid: 135 -[2026-03-26 01:18:51 +0000] [136] [INFO] Booting worker with pid: 136 -[2026-03-26 01:18:51 +0000] [137] [INFO] Booting worker with pid: 137 -[2026-03-26 01:18:51 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 01:18:51 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 01:18:51 +0000] [140] [INFO] Booting worker with pid: 140 -[2026-03-26 01:18:51 +0000] [141] [INFO] Booting worker with pid: 141 -[2026-03-26 01:18:51 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 01:18:51 +0000] [143] [INFO] Booting worker with pid: 143 -[2026-03-26 01:18:51 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 01:18:51 +0000] [145] [INFO] Booting worker with pid: 145 -[2026-03-26 01:18:51 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 01:18:51 +0000] [147] [INFO] Booting worker with pid: 147 -[2026-03-26 01:18:51 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 01:18:51 +0000] [149] [INFO] Booting worker with pid: 149 -[2026-03-26 01:18:51 +0000] [150] [INFO] Booting worker with pid: 150 -[2026-03-26 01:18:51 +0000] [151] [INFO] Booting worker with pid: 151 -[2026-03-26 01:18:52 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 01:18:52 +0000] [153] [INFO] Booting worker with pid: 153 -[2026-03-26 01:18:52 +0000] [154] [INFO] Booting worker with pid: 154 -[2026-03-26 01:18:52 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 01:18:52 +0000] [156] [INFO] Booting worker with pid: 156 -[2026-03-26 01:18:52 +0000] [157] [INFO] Booting worker with pid: 157 -[2026-03-26 01:18:52 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 01:18:52 +0000] [159] [INFO] Booting worker with pid: 159 -[2026-03-26 01:18:52 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 01:18:52 +0000] [161] [INFO] Booting worker with pid: 161 -[2026-03-26 01:18:52 +0000] [162] [INFO] Booting worker with pid: 162 -[2026-03-26 01:18:52 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 01:18:52 +0000] [164] [INFO] Booting worker with pid: 164 -[2026-03-26 01:18:52 +0000] [165] [INFO] Booting worker with pid: 165 -[2026-03-26 01:18:52 +0000] [166] [INFO] Booting worker with pid: 166 -[2026-03-26 01:18:52 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 01:18:52 +0000] [168] [INFO] Booting worker with pid: 168 -[2026-03-26 01:18:52 +0000] [169] [INFO] Booting worker with pid: 169 -[2026-03-26 01:18:52 +0000] [170] [INFO] Booting worker with pid: 170 -[2026-03-26 01:18:53 +0000] [171] [INFO] Booting worker with pid: 171 -[2026-03-26 01:18:53 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 01:18:53 +0000] [173] [INFO] Booting worker with pid: 173 -[2026-03-26 01:18:53 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 01:18:53 +0000] [175] [INFO] Booting worker with pid: 175 -[2026-03-26 01:18:53 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 01:18:53 +0000] [177] [INFO] Booting worker with pid: 177 -[2026-03-26 01:18:53 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 01:18:53 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 01:18:53 +0000] [180] [INFO] Booting worker with pid: 180 -[2026-03-26 01:18:53 +0000] [181] [INFO] Booting worker with pid: 181 -[2026-03-26 01:18:53 +0000] [182] [INFO] Booting worker with pid: 182 -[2026-03-26 01:18:53 +0000] [183] [INFO] Booting worker with pid: 183 -[2026-03-26 01:18:53 +0000] [184] [INFO] Booting worker with pid: 184 -[2026-03-26 01:18:53 +0000] [185] [INFO] Booting worker with pid: 185 -[2026-03-26 01:18:53 +0000] [186] [INFO] Booting worker with pid: 186 -[2026-03-26 01:18:53 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 01:18:53 +0000] [188] [INFO] Booting worker with pid: 188 -[2026-03-26 01:18:53 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 01:18:53 +0000] [190] [INFO] Booting worker with pid: 190 -[2026-03-26 01:18:53 +0000] [191] [INFO] Booting worker with pid: 191 -[2026-03-26 01:18:54 +0000] [192] [INFO] Booting worker with pid: 192 -[2026-03-26 01:18:54 +0000] [193] [INFO] Booting worker with pid: 193 -[2026-03-26 01:18:54 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 01:18:54 +0000] [195] [INFO] Booting worker with pid: 195 -[2026-03-26 01:18:54 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 01:18:54 +0000] [197] [INFO] Booting worker with pid: 197 -[2026-03-26 01:18:54 +0000] [198] [INFO] Booting worker with pid: 198 -[2026-03-26 01:18:54 +0000] [199] [INFO] Booting worker with pid: 199 -[2026-03-26 01:18:54 +0000] [200] [INFO] Booting worker with pid: 200 -[2026-03-26 01:18:54 +0000] [201] [INFO] Booting worker with pid: 201 -[2026-03-26 01:18:54 +0000] [202] [INFO] Booting worker with pid: 202 -[2026-03-26 01:18:54 +0000] [203] [INFO] Booting worker with pid: 203 -[2026-03-26 01:18:54 +0000] [204] [INFO] Booting worker with pid: 204 -[2026-03-26 01:18:54 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 01:18:54 +0000] [206] [INFO] Booting worker with pid: 206 -[2026-03-26 01:18:55 +0000] [207] [INFO] Booting worker with pid: 207 -[2026-03-26 01:18:55 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 01:18:55 +0000] [209] [INFO] Booting worker with pid: 209 -[2026-03-26 01:18:55 +0000] [210] [INFO] Booting worker with pid: 210 -[2026-03-26 01:18:55 +0000] [211] [INFO] Booting worker with pid: 211 -[2026-03-26 01:18:55 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 01:18:55 +0000] [213] [INFO] Booting worker with pid: 213 -[2026-03-26 01:18:55 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 01:18:55 +0000] [215] [INFO] Booting worker with pid: 215 -[2026-03-26 01:18:55 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 01:18:55 +0000] [217] [INFO] Booting worker with pid: 217 -[2026-03-26 01:18:55 +0000] [218] [INFO] Booting worker with pid: 218 -[2026-03-26 01:18:55 +0000] [219] [INFO] Booting worker with pid: 219 -[2026-03-26 01:18:55 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 01:18:55 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 01:18:55 +0000] [222] [INFO] Booting worker with pid: 222 -[2026-03-26 01:18:55 +0000] [223] [INFO] Booting worker with pid: 223 -[2026-03-26 01:18:55 +0000] [224] [INFO] Booting worker with pid: 224 -[2026-03-26 01:18:55 +0000] [225] [INFO] Booting worker with pid: 225 -[2026-03-26 01:18:55 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 01:18:55 +0000] [227] [INFO] Booting worker with pid: 227 -[2026-03-26 01:18:55 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 01:18:55 +0000] [229] [INFO] Booting worker with pid: 229 -[2026-03-26 01:18:56 +0000] [230] [INFO] Booting worker with pid: 230 -[2026-03-26 01:18:56 +0000] [231] [INFO] Booting worker with pid: 231 -[2026-03-26 01:18:56 +0000] [232] [INFO] Booting worker with pid: 232 -[2026-03-26 01:18:56 +0000] [233] [INFO] Booting worker with pid: 233 -[2026-03-26 01:18:56 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 01:18:56 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 01:18:56 +0000] [236] [INFO] Booting worker with pid: 236 -[2026-03-26 01:18:56 +0000] [237] [INFO] Booting worker with pid: 237 -[2026-03-26 01:18:56 +0000] [238] [INFO] Booting worker with pid: 238 -[2026-03-26 01:18:56 +0000] [239] [INFO] Booting worker with pid: 239 -[2026-03-26 01:18:56 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 01:18:56 +0000] [241] [INFO] Booting worker with pid: 241 -[2026-03-26 01:18:56 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 01:18:56 +0000] [243] [INFO] Booting worker with pid: 243 -[2026-03-26 01:18:56 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 01:18:56 +0000] [245] [INFO] Booting worker with pid: 245 -[2026-03-26 01:18:57 +0000] [246] [INFO] Booting worker with pid: 246 -[2026-03-26 01:18:57 +0000] [247] [INFO] Booting worker with pid: 247 -[2026-03-26 01:18:57 +0000] [248] [INFO] Booting worker with pid: 248 -[2026-03-26 01:18:57 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 01:18:57 +0000] [250] [INFO] Booting worker with pid: 250 -[2026-03-26 01:18:57 +0000] [251] [INFO] Booting worker with pid: 251 -[2026-03-26 01:18:57 +0000] [252] [INFO] Booting worker with pid: 252 -[2026-03-26 01:18:57 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 01:18:57 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 01:18:57 +0000] [255] [INFO] Booting worker with pid: 255 -[2026-03-26 01:18:57 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 01:18:57 +0000] [257] [INFO] Booting worker with pid: 257 -[2026-03-26 01:18:57 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 01:18:57 +0000] [259] [INFO] Booting worker with pid: 259 -[2026-03-26 01:18:57 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 01:18:58 +0000] [261] [INFO] Booting worker with pid: 261 -[2026-03-26 01:18:58 +0000] [262] [INFO] Booting worker with pid: 262 -[2026-03-26 01:19:00,626] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:15 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 02:05:15 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 02:05:15 +0000] [1] [INFO] Using worker: sync +[2026-03-29 02:05:15 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 02:05:15 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 02:05:15 +0000] [10] [INFO] Booting worker with pid: 10 +[2026-03-29 02:05:15 +0000] [11] [INFO] Booting worker with pid: 11 +[2026-03-29 02:05:15 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 02:05:15 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 02:05:15 +0000] [14] [INFO] Booting worker with pid: 14 +[2026-03-29 02:05:15 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 02:05:15 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 02:05:15 +0000] [17] [INFO] Booting worker with pid: 17 +[2026-03-29 02:05:15 +0000] [18] [INFO] Booting worker with pid: 18 +[2026-03-29 02:05:16 +0000] [19] [INFO] Booting worker with pid: 19 +[2026-03-29 02:05:16 +0000] [20] [INFO] Booting worker with pid: 20 +[2026-03-29 02:05:16 +0000] [21] [INFO] Booting worker with pid: 21 +[2026-03-29 02:05:16 +0000] [22] [INFO] Booting worker with pid: 22 +[2026-03-29 02:05:16 +0000] [23] [INFO] Booting worker with pid: 23 +[2026-03-29 02:05:16 +0000] [24] [INFO] Booting worker with pid: 24 +[2026-03-29 02:05:16 +0000] [25] [INFO] Booting worker with pid: 25 +[2026-03-29 02:05:16 +0000] [26] [INFO] Booting worker with pid: 26 +[2026-03-29 02:05:16 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 02:05:16 +0000] [28] [INFO] Booting worker with pid: 28 +[2026-03-29 02:05:16 +0000] [29] [INFO] Booting worker with pid: 29 +[2026-03-29 02:05:16 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 02:05:16 +0000] [31] [INFO] Booting worker with pid: 31 +[2026-03-29 02:05:16 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 02:05:16 +0000] [33] [INFO] Booting worker with pid: 33 +[2026-03-29 02:05:16 +0000] [34] [INFO] Booting worker with pid: 34 +[2026-03-29 02:05:16 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 02:05:16 +0000] [36] [INFO] Booting worker with pid: 36 +[2026-03-29 02:05:16 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 02:05:16 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 02:05:17 +0000] [39] [INFO] Booting worker with pid: 39 +[2026-03-29 02:05:17 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 02:05:17 +0000] [41] [INFO] Booting worker with pid: 41 +[2026-03-29 02:05:17 +0000] [42] [INFO] Booting worker with pid: 42 +[2026-03-29 02:05:17 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 02:05:17 +0000] [44] [INFO] Booting worker with pid: 44 +[2026-03-29 02:05:17 +0000] [45] [INFO] Booting worker with pid: 45 +[2026-03-29 02:05:17 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 02:05:17 +0000] [47] [INFO] Booting worker with pid: 47 +[2026-03-29 02:05:17 +0000] [48] [INFO] Booting worker with pid: 48 +[2026-03-29 02:05:17 +0000] [49] [INFO] Booting worker with pid: 49 +[2026-03-29 02:05:17 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 02:05:17 +0000] [51] [INFO] Booting worker with pid: 51 +[2026-03-29 02:05:17 +0000] [52] [INFO] Booting worker with pid: 52 +[2026-03-29 02:05:17 +0000] [53] [INFO] Booting worker with pid: 53 +[2026-03-29 02:05:17 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 02:05:18 +0000] [55] [INFO] Booting worker with pid: 55 +[2026-03-29 02:05:18 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 02:05:18 +0000] [57] [INFO] Booting worker with pid: 57 +[2026-03-29 02:05:18 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 02:05:18 +0000] [59] [INFO] Booting worker with pid: 59 +[2026-03-29 02:05:18 +0000] [60] [INFO] Booting worker with pid: 60 +[2026-03-29 02:05:18 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 02:05:18 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 02:05:18 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 02:05:18 +0000] [64] [INFO] Booting worker with pid: 64 +[2026-03-29 02:05:18 +0000] [65] [INFO] Booting worker with pid: 65 +[2026-03-29 02:05:18 +0000] [66] [INFO] Booting worker with pid: 66 +[2026-03-29 02:05:18 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 02:05:18 +0000] [68] [INFO] Booting worker with pid: 68 +[2026-03-29 02:05:18 +0000] [69] [INFO] Booting worker with pid: 69 +[2026-03-29 02:05:18 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 02:05:18 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 02:05:18 +0000] [72] [INFO] Booting worker with pid: 72 +[2026-03-29 02:05:18 +0000] [73] [INFO] Booting worker with pid: 73 +[2026-03-29 02:05:18 +0000] [74] [INFO] Booting worker with pid: 74 +[2026-03-29 02:05:19 +0000] [75] [INFO] Booting worker with pid: 75 +[2026-03-29 02:05:19 +0000] [76] [INFO] Booting worker with pid: 76 +[2026-03-29 02:05:19 +0000] [77] [INFO] Booting worker with pid: 77 +[2026-03-29 02:05:19 +0000] [78] [INFO] Booting worker with pid: 78 +[2026-03-29 02:05:19 +0000] [79] [INFO] Booting worker with pid: 79 +[2026-03-29 02:05:19 +0000] [80] [INFO] Booting worker with pid: 80 +[2026-03-29 02:05:19 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 02:05:19 +0000] [82] [INFO] Booting worker with pid: 82 +[2026-03-29 02:05:19 +0000] [83] [INFO] Booting worker with pid: 83 +[2026-03-29 02:05:19 +0000] [84] [INFO] Booting worker with pid: 84 +[2026-03-29 02:05:19 +0000] [85] [INFO] Booting worker with pid: 85 +[2026-03-29 02:05:19 +0000] [86] [INFO] Booting worker with pid: 86 +[2026-03-29 02:05:19 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 02:05:19 +0000] [88] [INFO] Booting worker with pid: 88 +[2026-03-29 02:05:19 +0000] [89] [INFO] Booting worker with pid: 89 +[2026-03-29 02:05:19 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 02:05:19 +0000] [91] [INFO] Booting worker with pid: 91 +[2026-03-29 02:05:19 +0000] [92] [INFO] Booting worker with pid: 92 +[2026-03-29 02:05:19 +0000] [93] [INFO] Booting worker with pid: 93 +[2026-03-29 02:05:19 +0000] [94] [INFO] Booting worker with pid: 94 +[2026-03-29 02:05:20 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 02:05:20 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 02:05:20 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 02:05:20 +0000] [98] [INFO] Booting worker with pid: 98 +[2026-03-29 02:05:20 +0000] [99] [INFO] Booting worker with pid: 99 +[2026-03-29 02:05:20 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 02:05:20 +0000] [101] [INFO] Booting worker with pid: 101 +[2026-03-29 02:05:20 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 02:05:20 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 02:05:20 +0000] [104] [INFO] Booting worker with pid: 104 +[2026-03-29 02:05:20 +0000] [105] [INFO] Booting worker with pid: 105 +[2026-03-29 02:05:20 +0000] [106] [INFO] Booting worker with pid: 106 +[2026-03-29 02:05:20 +0000] [107] [INFO] Booting worker with pid: 107 +[2026-03-29 02:05:20 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 02:05:20 +0000] [109] [INFO] Booting worker with pid: 109 +[2026-03-29 02:05:20 +0000] [110] [INFO] Booting worker with pid: 110 +[2026-03-29 02:05:20 +0000] [111] [INFO] Booting worker with pid: 111 +[2026-03-29 02:05:20 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 02:05:20 +0000] [113] [INFO] Booting worker with pid: 113 +[2026-03-29 02:05:20 +0000] [114] [INFO] Booting worker with pid: 114 +[2026-03-29 02:05:20 +0000] [115] [INFO] Booting worker with pid: 115 +[2026-03-29 02:05:21 +0000] [116] [INFO] Booting worker with pid: 116 +[2026-03-29 02:05:21 +0000] [117] [INFO] Booting worker with pid: 117 +[2026-03-29 02:05:21 +0000] [118] [INFO] Booting worker with pid: 118 +[2026-03-29 02:05:21 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 02:05:21 +0000] [120] [INFO] Booting worker with pid: 120 +[2026-03-29 02:05:21 +0000] [121] [INFO] Booting worker with pid: 121 +[2026-03-29 02:05:21 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 02:05:21 +0000] [123] [INFO] Booting worker with pid: 123 +[2026-03-29 02:05:21 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 02:05:21 +0000] [125] [INFO] Booting worker with pid: 125 +[2026-03-29 02:05:21 +0000] [126] [INFO] Booting worker with pid: 126 +[2026-03-29 02:05:21 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 02:05:21 +0000] [128] [INFO] Booting worker with pid: 128 +[2026-03-29 02:05:21 +0000] [129] [INFO] Booting worker with pid: 129 +[2026-03-29 02:05:21 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 02:05:21 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 02:05:21 +0000] [132] [INFO] Booting worker with pid: 132 +[2026-03-29 02:05:21 +0000] [133] [INFO] Booting worker with pid: 133 +[2026-03-29 02:05:21 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 02:05:22 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 02:05:22 +0000] [136] [INFO] Booting worker with pid: 136 +[2026-03-29 02:05:22 +0000] [137] [INFO] Booting worker with pid: 137 +[2026-03-29 02:05:22 +0000] [138] [INFO] Booting worker with pid: 138 +[2026-03-29 02:05:22 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 02:05:22 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 02:05:22 +0000] [141] [INFO] Booting worker with pid: 141 +[2026-03-29 02:05:22 +0000] [142] [INFO] Booting worker with pid: 142 +[2026-03-29 02:05:22 +0000] [143] [INFO] Booting worker with pid: 143 +[2026-03-29 02:05:22 +0000] [144] [INFO] Booting worker with pid: 144 +[2026-03-29 02:05:22 +0000] [145] [INFO] Booting worker with pid: 145 +[2026-03-29 02:05:22 +0000] [146] [INFO] Booting worker with pid: 146 +[2026-03-29 02:05:22 +0000] [147] [INFO] Booting worker with pid: 147 +[2026-03-29 02:05:22 +0000] [148] [INFO] Booting worker with pid: 148 +[2026-03-29 02:05:22 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 02:05:22 +0000] [150] [INFO] Booting worker with pid: 150 +[2026-03-29 02:05:22 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 02:05:22 +0000] [152] [INFO] Booting worker with pid: 152 +[2026-03-29 02:05:22 +0000] [153] [INFO] Booting worker with pid: 153 +[2026-03-29 02:05:22 +0000] [154] [INFO] Booting worker with pid: 154 +[2026-03-29 02:05:22 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 02:05:23 +0000] [156] [INFO] Booting worker with pid: 156 +[2026-03-29 02:05:23 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 02:05:23 +0000] [158] [INFO] Booting worker with pid: 158 +[2026-03-29 02:05:23 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 02:05:23 +0000] [160] [INFO] Booting worker with pid: 160 +[2026-03-29 02:05:23 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 02:05:23 +0000] [162] [INFO] Booting worker with pid: 162 +[2026-03-29 02:05:23 +0000] [163] [INFO] Booting worker with pid: 163 +[2026-03-29 02:05:23 +0000] [164] [INFO] Booting worker with pid: 164 +[2026-03-29 02:05:23 +0000] [165] [INFO] Booting worker with pid: 165 +[2026-03-29 02:05:23 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 02:05:23 +0000] [167] [INFO] Booting worker with pid: 167 +[2026-03-29 02:05:23 +0000] [168] [INFO] Booting worker with pid: 168 +[2026-03-29 02:05:24 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 02:05:24 +0000] [170] [INFO] Booting worker with pid: 170 +[2026-03-29 02:05:24 +0000] [171] [INFO] Booting worker with pid: 171 +[2026-03-29 02:05:24 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 02:05:24 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 02:05:24 +0000] [174] [INFO] Booting worker with pid: 174 +[2026-03-29 02:05:24 +0000] [175] [INFO] Booting worker with pid: 175 +[2026-03-29 02:05:24 +0000] [176] [INFO] Booting worker with pid: 176 +[2026-03-29 02:05:24 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 02:05:24 +0000] [178] [INFO] Booting worker with pid: 178 +[2026-03-29 02:05:24 +0000] [179] [INFO] Booting worker with pid: 179 +[2026-03-29 02:05:24 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 02:05:24 +0000] [181] [INFO] Booting worker with pid: 181 +[2026-03-29 02:05:24 +0000] [182] [INFO] Booting worker with pid: 182 +[2026-03-29 02:05:24 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 02:05:24 +0000] [184] [INFO] Booting worker with pid: 184 +[2026-03-29 02:05:24 +0000] [185] [INFO] Booting worker with pid: 185 +[2026-03-29 02:05:24 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 02:05:25 +0000] [187] [INFO] Booting worker with pid: 187 +[2026-03-29 02:05:25 +0000] [188] [INFO] Booting worker with pid: 188 +[2026-03-29 02:05:25 +0000] [189] [INFO] Booting worker with pid: 189 +[2026-03-29 02:05:25 +0000] [190] [INFO] Booting worker with pid: 190 +[2026-03-29 02:05:25 +0000] [191] [INFO] Booting worker with pid: 191 +[2026-03-29 02:05:25 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 02:05:25 +0000] [193] [INFO] Booting worker with pid: 193 +[2026-03-29 02:05:25 +0000] [194] [INFO] Booting worker with pid: 194 +[2026-03-29 02:05:25 +0000] [195] [INFO] Booting worker with pid: 195 +[2026-03-29 02:05:25 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 02:05:25 +0000] [197] [INFO] Booting worker with pid: 197 +[2026-03-29 02:05:25 +0000] [198] [INFO] Booting worker with pid: 198 +[2026-03-29 02:05:25 +0000] [199] [INFO] Booting worker with pid: 199 +[2026-03-29 02:05:25 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 02:05:25 +0000] [201] [INFO] Booting worker with pid: 201 +[2026-03-29 02:05:25 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 02:05:25 +0000] [203] [INFO] Booting worker with pid: 203 +[2026-03-29 02:05:25 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 02:05:25 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 02:05:25 +0000] [206] [INFO] Booting worker with pid: 206 +[2026-03-29 02:05:26 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 02:05:26 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 02:05:26 +0000] [209] [INFO] Booting worker with pid: 209 +[2026-03-29 02:05:26 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 02:05:26 +0000] [211] [INFO] Booting worker with pid: 211 +[2026-03-29 02:05:26 +0000] [212] [INFO] Booting worker with pid: 212 +[2026-03-29 02:05:26 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 02:05:26 +0000] [214] [INFO] Booting worker with pid: 214 +[2026-03-29 02:05:26 +0000] [215] [INFO] Booting worker with pid: 215 +[2026-03-29 02:05:26 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 02:05:26 +0000] [217] [INFO] Booting worker with pid: 217 +[2026-03-29 02:05:26 +0000] [218] [INFO] Booting worker with pid: 218 +[2026-03-29 02:05:26 +0000] [219] [INFO] Booting worker with pid: 219 +[2026-03-29 02:05:26 +0000] [220] [INFO] Booting worker with pid: 220 +[2026-03-29 02:05:26 +0000] [221] [INFO] Booting worker with pid: 221 +[2026-03-29 02:05:26 +0000] [222] [INFO] Booting worker with pid: 222 +[2026-03-29 02:05:26 +0000] [223] [INFO] Booting worker with pid: 223 +[2026-03-29 02:05:26 +0000] [224] [INFO] Booting worker with pid: 224 +[2026-03-29 02:05:26 +0000] [225] [INFO] Booting worker with pid: 225 +[2026-03-29 02:05:27 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 02:05:27 +0000] [227] [INFO] Booting worker with pid: 227 +[2026-03-29 02:05:27 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 02:05:27 +0000] [229] [INFO] Booting worker with pid: 229 +[2026-03-29 02:05:27 +0000] [230] [INFO] Booting worker with pid: 230 +[2026-03-29 02:05:27 +0000] [231] [INFO] Booting worker with pid: 231 +[2026-03-29 02:05:27 +0000] [232] [INFO] Booting worker with pid: 232 +[2026-03-29 02:05:27 +0000] [233] [INFO] Booting worker with pid: 233 +[2026-03-29 02:05:27 +0000] [234] [INFO] Booting worker with pid: 234 +[2026-03-29 02:05:27 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 02:05:27 +0000] [236] [INFO] Booting worker with pid: 236 +[2026-03-29 02:05:27 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 02:05:27 +0000] [238] [INFO] Booting worker with pid: 238 +[2026-03-29 02:05:27 +0000] [239] [INFO] Booting worker with pid: 239 +[2026-03-29 02:05:27 +0000] [240] [INFO] Booting worker with pid: 240 +[2026-03-29 02:05:27 +0000] [241] [INFO] Booting worker with pid: 241 +[2026-03-29 02:05:28 +0000] [242] [INFO] Booting worker with pid: 242 +[2026-03-29 02:05:28 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 02:05:28 +0000] [244] [INFO] Booting worker with pid: 244 +[2026-03-29 02:05:28 +0000] [245] [INFO] Booting worker with pid: 245 +[2026-03-29 02:05:28 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 02:05:28 +0000] [247] [INFO] Booting worker with pid: 247 +[2026-03-29 02:05:28 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 02:05:28 +0000] [249] [INFO] Booting worker with pid: 249 +[2026-03-29 02:05:28 +0000] [250] [INFO] Booting worker with pid: 250 +[2026-03-29 02:05:28 +0000] [251] [INFO] Booting worker with pid: 251 +[2026-03-29 02:05:28 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 02:05:28 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 02:05:28 +0000] [254] [INFO] Booting worker with pid: 254 +[2026-03-29 02:05:28 +0000] [255] [INFO] Booting worker with pid: 255 +[2026-03-29 02:05:28 +0000] [256] [INFO] Booting worker with pid: 256 +[2026-03-29 02:05:28 +0000] [257] [INFO] Booting worker with pid: 257 +[2026-03-29 02:05:28 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 02:05:28 +0000] [259] [INFO] Booting worker with pid: 259 +[2026-03-29 02:05:28 +0000] [260] [INFO] Booting worker with pid: 260 +[2026-03-29 02:05:28 +0000] [261] [INFO] Booting worker with pid: 261 +[2026-03-29 02:05:28 +0000] [262] [INFO] Booting worker with pid: 262 +[2026-03-29 02:05:29 +0000] [263] [INFO] Booting worker with pid: 263 +[2026-03-29 02:05:31,458] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -268,10 +268,8 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read @@ -282,7 +280,7 @@ Traceback (most recent call last): return self.sock.recv(self.mxchunk) ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ ConnectionResetError: [Errno 104] Connection reset by peer -[2026-03-26 01:19:00,630] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:48,816] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -293,10 +291,8 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read @@ -307,7 +303,7 @@ Traceback (most recent call last): return self.sock.recv(self.mxchunk) ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ ConnectionResetError: [Errno 104] Connection reset by peer -[2026-03-26 01:19:00,647] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:48,817] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -318,10 +314,8 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read @@ -332,7 +326,7 @@ Traceback (most recent call last): return self.sock.recv(self.mxchunk) ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ ConnectionResetError: [Errno 104] Connection reset by peer -[2026-03-26 01:19:17,920] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:48,825] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -343,10 +337,8 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read @@ -357,7 +349,7 @@ Traceback (most recent call last): return self.sock.recv(self.mxchunk) ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ ConnectionResetError: [Errno 104] Connection reset by peer -[2026-03-26 01:19:35,243] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:48,828] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -368,10 +360,8 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read @@ -382,7 +372,7 @@ Traceback (most recent call last): return self.sock.recv(self.mxchunk) ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ ConnectionResetError: [Errno 104] Connection reset by peer -[2026-03-26 01:19:35,310] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:48,865] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -393,10 +383,8 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read @@ -407,7 +395,7 @@ Traceback (most recent call last): return self.sock.recv(self.mxchunk) ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ ConnectionResetError: [Errno 104] Connection reset by peer -[2026-03-26 01:19:35,310] ERROR in app: Exception on /upload [POST] +[2026-03-29 02:05:48,867] ERROR in app: Exception on /upload [POST] Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app response = self.full_dispatch_request() @@ -418,10 +406,169 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,126] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,140] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,150] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,158] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,159] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,159] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read + data = self.reader.read(1024) + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read + data = self.unreader.read() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read + d = self.chunk() + File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk + return self.sock.recv(self.mxchunk) + ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ +ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:06:06,178] ERROR in app: Exception on /upload [POST] +Traceback (most recent call last): + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app + response = self.full_dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request + rv = self.handle_user_exception(e) + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request + rv = self.dispatch_request() + File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request + return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ + File "/app/app.py", line 232, in upload_endpoint + chunk = request.stream.read(65536) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read data = self.reader.read(1024) File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read diff --git a/site/static/logs/mixed/16384/hono-bun.log b/site/static/logs/mixed/16384/hono-bun.log index 9894f4df..4da47510 100644 --- a/site/static/logs/mixed/16384/hono-bun.log +++ b/site/static/logs/mixed/16384/hono-bun.log @@ -8158,3 +8158,963 @@ DOMException { DATA_CLONE_ERR: 25, toString: [Function: toString], } +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} +DOMException { + stack: "", + code: 20, + name: "AbortError", + message: "The connection was closed.", + INDEX_SIZE_ERR: 1, + DOMSTRING_SIZE_ERR: 2, + HIERARCHY_REQUEST_ERR: 3, + WRONG_DOCUMENT_ERR: 4, + INVALID_CHARACTER_ERR: 5, + NO_DATA_ALLOWED_ERR: 6, + NO_MODIFICATION_ALLOWED_ERR: 7, + NOT_FOUND_ERR: 8, + NOT_SUPPORTED_ERR: 9, + INUSE_ATTRIBUTE_ERR: 10, + INVALID_STATE_ERR: 11, + SYNTAX_ERR: 12, + INVALID_MODIFICATION_ERR: 13, + NAMESPACE_ERR: 14, + INVALID_ACCESS_ERR: 15, + VALIDATION_ERR: 16, + TYPE_MISMATCH_ERR: 17, + SECURITY_ERR: 18, + NETWORK_ERR: 19, + ABORT_ERR: 20, + URL_MISMATCH_ERR: 21, + QUOTA_EXCEEDED_ERR: 22, + TIMEOUT_ERR: 23, + INVALID_NODE_TYPE_ERR: 24, + DATA_CLONE_ERR: 25, + toString: [Function: toString], +} diff --git a/site/static/logs/mixed/16384/hono.log b/site/static/logs/mixed/16384/hono.log index 0a912653..e69de29b 100644 --- a/site/static/logs/mixed/16384/hono.log +++ b/site/static/logs/mixed/16384/hono.log @@ -1,7 +0,0 @@ -Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) { - code: 'ECONNRESET' -} diff --git a/site/static/logs/mixed/16384/humming-bird.log b/site/static/logs/mixed/16384/humming-bird.log index aa01924c..4c2b06b5 100644 --- a/site/static/logs/mixed/16384/humming-bird.log +++ b/site/static/logs/mixed/16384/humming-bird.log @@ -1 +1 @@ -2026-03-27T16:40:40+0000 info hummingbird: [HummingbirdCore] Server started and listening on 0.0.0.0:8080 +2026-03-29T02:27:35+0000 info hummingbird: [HummingbirdCore] Server started and listening on 0.0.0.0:8080 diff --git a/site/static/logs/mixed/16384/kemal.log b/site/static/logs/mixed/16384/kemal.log index c81342dc..051995d4 100644 --- a/site/static/logs/mixed/16384/kemal.log +++ b/site/static/logs/mixed/16384/kemal.log @@ -1,37 +1,31 @@ + from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' -2026-03-26T01:41:45.199368Z ERROR - kemal: Closed stream from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' from /app/server in '??' -) from ??? - +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.229485Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.168415Z ERROR - kemal: Closed stream +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' -) from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -39,6 +33,8 @@ Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -46,22 +42,24 @@ Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.229696Z ERROR - kemal: Error reading socket (#): Connection reset by peer from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) -2026-03-26T01:41:45.199386Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -70,44 +68,56 @@ Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.168437Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? +2026-03-29T02:31:32.435907Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.202134Z ERROR - kemal: Closed stream from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.170468Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.432981Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -120,6 +130,12 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.433004Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -129,22 +145,27 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:31:32.429011Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.202154Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.170491Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.430916Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -153,19 +174,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.213309Z ERROR - kemal: Error reading socket (#): Connection reset by peer from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) from /app/server in '??' from ??? -2026-03-26T01:41:45.172402Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.430938Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -178,6 +193,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -186,8 +203,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' - +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -195,10 +211,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? + from /app/server in '??' -2026-03-26T01:41:45.172425Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' +2026-03-29T02:31:32.432807Z ERROR - kemal: Closed stream + from ??? +Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -206,10 +225,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.174300Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -218,6 +233,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -225,7 +241,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.174320Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.432831Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -237,14 +253,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.178287Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -253,8 +270,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.178308Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.179434Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -264,14 +280,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.178583Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.179465Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -282,7 +299,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.193073Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.184071Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -299,7 +316,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.193095Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.184095Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -311,7 +328,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.197833Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.187708Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -328,28 +345,30 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.197856Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.187731Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:41:45.232656Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.208875Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -357,9 +376,6 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -375,7 +391,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:41:45.232672Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.208901Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -387,8 +403,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.179885Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.321460Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -398,17 +414,13 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.180514Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -417,8 +429,6 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -427,6 +437,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? + +2026-03-29T02:31:32.321488Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -436,55 +450,54 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:41:45.207943Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.399004Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.218097Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' +2026-03-29T02:31:32.399029Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' - from ??? - -2026-03-26T01:41:45.218113Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.219830Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.381932Z ERROR - kemal: Closed stream Closed stream (IO::Error) -2026-03-26T01:41:45.153004Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -500,7 +513,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.219846Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.381957Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -509,6 +522,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.399024Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -518,36 +536,36 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.154704Z ERROR - kemal: Error reading socket (#): Connection reset by peer from ??? -Error reading socket (#): Connection reset by peer (IO::Error -) -2026-03-26T01:41:45.221220Z ERROR - kemal: Closed stream + +2026-03-29T02:31:32.399050Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' +2026-03-29T02:31:32.422595Z ERROR - kemal: Error reading socket (#): Connection reset by peer from /app/server in '??' +Error reading socket (#): Connection reset by peer (IO::Error) from ??? from /app/server in '??' -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -560,32 +578,32 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.157754Z ERROR - kemal: Error reading socket (#): Connection reset by peer from ??? - -Error reading socket (#): Connection reset by peer (IO::Error) -2026-03-26T01:41:45.221234Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -593,27 +611,24 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.223813Z ERROR - kemal: Closed stream from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.241517Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -621,33 +636,33 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.223829Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from ??? - -2026-03-26T01:41:45.241533Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -656,14 +671,17 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.232865Z ERROR - kemal: Error while flushing data to the client +2026-03-29T02:31:32.428240Z ERROR - kemal: Closed stream from ??? - -Error while flushing data to the client (HTTP::Server::ClientError) +Closed stream (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -679,28 +697,30 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' +2026-03-29T02:31:32.428265Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error) + from ??? + from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.232882Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) -2026-03-26T01:41:45.220125Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -710,13 +730,19 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? + from /app/server in '??' + from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -725,10 +751,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.220151Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -737,8 +768,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.195287Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.363468Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -755,7 +785,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.195311Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.363493Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -767,7 +797,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.197536Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.415385Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -784,7 +814,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.197559Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.415402Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -796,7 +826,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.199411Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.428243Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -813,7 +843,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.199435Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.428266Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -825,8 +855,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.200326Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.442169Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -839,11 +875,17 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from ??? + from /app/server in '??' -2026-03-26T01:41:45.214939Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' +2026-03-29T02:31:32.442193Z ERROR - http.server: Unhandled exception on HTTP::Handler + from /app/server in '??' +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -852,14 +894,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.215378Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.438749Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -873,14 +916,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.225372Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -889,11 +933,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.225388Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -901,9 +941,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.227880Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -911,6 +949,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -918,10 +958,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.227895Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -930,8 +967,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.229122Z ERROR - kemal: Closed stream +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:31:32.235389Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -946,9 +983,12 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from ??? -2026-03-26T01:41:45.229135Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.235413Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -960,7 +1000,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.230345Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.367440Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -976,26 +1016,20 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.230358Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.231258Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:31:32.367462Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1005,9 +1039,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.131236Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) -2026-03-26T01:41:45.174047Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.401586Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1019,10 +1051,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' - from ??? - from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1032,28 +1064,28 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.174070Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? from ??? -2026-03-26T01:41:45.243035Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.401609Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1061,14 +1093,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.243050Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1078,8 +1109,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1087,16 +1118,17 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.388976Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1104,7 +1136,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.441929Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1112,8 +1146,6 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1121,24 +1153,32 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.441953Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' +2026-03-29T02:31:32.348381Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from ??? + +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.464721Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1146,59 +1186,58 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.464738Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from ??? + +2026-03-29T02:31:32.465956Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.465971Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1206,15 +1245,13 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' @@ -1223,16 +1260,14 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.131650Z ERROR - kemal: Closed stream + +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.348407Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1246,29 +1281,22 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' from ??? -2026-03-26T01:41:45.131673Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.387810Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' +2026-03-29T02:31:32.409514Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.167229Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1278,7 +1306,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.167254Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.387837Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1288,10 +1316,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.169677Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1301,13 +1325,17 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' +2026-03-29T02:31:32.426451Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' - from ??? +Closed stream (IO::Error from ??? +) -2026-03-26T01:41:45.169701Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.409538Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1317,16 +1345,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.224535Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1335,7 +1362,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.226132Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.426473Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1345,16 +1372,17 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.226147Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1363,15 +1391,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.227370Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1380,11 +1408,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.227384Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1392,15 +1416,16 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.228384Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1408,15 +1433,17 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.228921Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +2026-03-29T02:31:32.469431Z ERROR - kemal: Closed stream +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1424,18 +1451,16 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.168233Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1444,11 +1469,16 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.469446Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1456,11 +1486,13 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from ??? -2026-03-26T01:41:45.168259Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.360105Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1471,7 +1503,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.186368Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.441769Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1488,7 +1520,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.186393Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.441793Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1500,10 +1532,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.189741Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:31:32.446810Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1517,7 +1547,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.189763Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.455194Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1527,15 +1557,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.010743Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.455221Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1546,8 +1576,11 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.010770Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.469986Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1558,7 +1591,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.077309Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.398081Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1575,23 +1608,20 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.077336Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.398106Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' -2026-03-26T01:41:45.088548Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' from /app/server in '??' -) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.080582Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.185249Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1605,6 +1635,10 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.185273Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1614,15 +1648,8 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' -2026-03-26T01:41:45.088573Z ERROR - http.server: Unhandled exception on HTTP::Handler - from ??? -Closed stream (IO::Error -) -2026-03-26T01:41:45.124488Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.219091Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1638,20 +1665,20 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:31:32.219122Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.102598Z ERROR - kemal: Error reading socket (#): Connection reset by peer from /app/server in '??' from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.124514Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.222855Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1666,27 +1693,21 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.222876Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' -2026-03-26T01:41:45.168171Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from ??? -2026-03-26T01:41:45.154417Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1694,18 +1715,24 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' from /app/server in '??' -Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1714,7 +1741,7 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1722,21 +1749,17 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' - +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.168201Z ERROR - http.server: Unhandled exception on HTTP::Handler - from ??? -Closed stream (IO::Error -) -2026-03-26T01:41:45.154444Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +2026-03-29T02:31:32.445315Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1747,20 +1770,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from ??? -2026-03-26T01:41:45.183506Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.446914Z ERROR - kemal: Closed stream Closed stream (IO::Error) -2026-03-26T01:41:45.034317Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1775,20 +1789,24 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:31:32.446930Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.183529Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.426761Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1796,15 +1814,12 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.041613Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.426784Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1816,9 +1831,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.219534Z ERROR - kemal: Closed stream -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:31:32.348188Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1833,6 +1846,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.348221Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1840,34 +1857,27 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' - from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.373091Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.041640Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' from /app/server in '??' -) from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from ??? -2026-03-26T01:41:45.219550Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.373114Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1877,30 +1887,30 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.137291Z ERROR - kemal: Closed stream - -2026-03-26T01:41:45.221330Z ERROR - kemal: Closed stream -Closed stream (IO::Error) -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +2026-03-29T02:31:32.399708Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1915,17 +1925,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.221349Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from ??? -2026-03-26T01:41:45.137318Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.399732Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1937,7 +1943,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.226937Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.401671Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1947,11 +1953,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.153545Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1959,6 +1961,8 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1966,18 +1970,14 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from ??? -2026-03-26T01:41:45.226952Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1985,17 +1985,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:31:32.401693Z ERROR - http.server: Unhandled exception on HTTP::Handler from ??? +Closed stream (IO::Error) from /app/server in '??' - - from /app/server in '??' -2026-03-26T01:41:45.245063Z ERROR - kemal: Closed stream - from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2003,6 +1996,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.160224Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2017,20 +2014,20 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:31:32.160246Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.245077Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.153576Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.163820Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2042,17 +2039,12 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.168087Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.163844Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2062,14 +2054,9 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from ??? -2026-03-26T01:41:45.168112Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.171450Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2079,14 +2066,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.207183Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.171473Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2097,7 +2085,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.219102Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.180098Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2114,7 +2102,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.219118Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.180122Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2126,7 +2114,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.220363Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.208721Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2143,7 +2131,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.220377Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.208745Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2155,10 +2143,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.119830Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) -2026-03-26T01:41:45.196533Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.403667Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2173,14 +2159,11 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:31:32.403690Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.142661Z ERROR - kemal: Error reading socket (#): Connection reset by peer - from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2189,7 +2172,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.210671Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.405896Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2203,14 +2186,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' from ??? +2026-03-29T02:31:32.405918Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' -2026-03-26T01:41:45.204755Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2221,17 +2205,23 @@ Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.210695Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' +2026-03-29T02:31:32.392790Z ERROR - kemal: Closed stream from /app/server in '??' +Closed stream (IO::Error) from /app/server in '??' +2026-03-29T02:31:32.450897Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2244,15 +2234,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from ??? -2026-03-26T01:41:45.204778Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error2026-03-26T01:41:45.240082Z ERROR - kemal: Error while flushing data to the client +2026-03-29T02:31:32.392816Z ERROR - http.server: Unhandled exception on HTTP::Handler + from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' ) -Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2262,25 +2250,26 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' -2026-03-26T01:41:45.225666Z ERROR - kemal: Error reading socket (#): Connection reset by peer from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' + from /app/server in '??' from /app/server in '??' +2026-03-29T02:31:32.450914Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from ??? +) + +2026-03-29T02:31:32.419016Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2290,41 +2279,44 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.235472Z ERROR - kemal: Closed stream from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.240098Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2332,18 +2324,16 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from ??? - - -2026-03-26T01:41:45.235486Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2352,8 +2342,9 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.236838Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.389231Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:31:32.187088Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2370,8 +2361,10 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.236853Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.389258Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error from /app/server in '??' +) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2380,26 +2373,29 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.246978Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' +2026-03-29T02:31:32.187111Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.246991Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.449255Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2411,8 +2407,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) -2026-03-26T01:41:45.248078Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.194156Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2424,48 +2419,48 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' - from ??? - -2026-03-26T01:41:45.248090Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.248249Z ERROR - kemal: Error reading socket (#): Connection reset by peer from /app/server in '??' from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' -2026-03-26T01:41:44.997118Z ERROR - kemal: Closed stream from /app/server in '??' -Closed stream (IO::Error) + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? + from /app/server in '??' + from /app/server in '??' from /app/server in '??' +2026-03-29T02:31:32.449270Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2475,6 +2470,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? +2026-03-29T02:31:32.194180Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2489,10 +2488,16 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) -2026-03-26T01:41:44.997144Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' +2026-03-29T02:31:32.450637Z ERROR - kemal: Closed stream + from /app/server in '??' + from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' + from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2501,15 +2506,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.107517Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2518,40 +2523,36 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.107543Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.138551Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +2026-03-29T02:31:32.199904Z ERROR - kemal: Closed stream + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.249103Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.138575Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2568,20 +2569,18 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:41:45.206290Z ERROR - kemal: Error reading socket (#): Connection reset by peer + from ??? from /app/server in '??' -Error reading socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) + from ??? -2026-03-26T01:41:45.249117Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.450659Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.199927Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::ErrorClosed stream (IO::Error) +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2598,14 +2597,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from ??? +2026-03-29T02:31:32.360524Z ERROR - kemal: Closed stream -2026-03-26T01:41:45.229392Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2622,7 +2618,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.229408Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.360551Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2634,7 +2630,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.230753Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.398798Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2651,7 +2647,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.230767Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.398820Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2663,14 +2659,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.233131Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2679,11 +2676,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.233145Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2691,9 +2684,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.159163Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2701,6 +2692,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2708,10 +2701,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.159194Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2720,15 +2710,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.189294Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2737,9 +2727,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.189309Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.452260Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2750,7 +2742,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.199686Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.325800Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2767,7 +2759,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.199702Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.325825Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2779,11 +2771,12 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.204354Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.390470Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2794,22 +2787,20 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.204370Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.390495Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.231346Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2817,6 +2808,8 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2824,7 +2817,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.232846Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.430627Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2841,7 +2834,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.232861Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.430651Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2852,15 +2845,16 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.149792Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2869,11 +2863,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.149813Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2881,9 +2871,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.151670Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2891,6 +2879,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2898,10 +2888,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.151691Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2910,15 +2897,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.153395Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2927,11 +2914,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.153414Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2939,9 +2922,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.205190Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2949,6 +2930,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2956,10 +2939,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.205215Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2968,8 +2948,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.244377Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.242182Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2986,10 +2965,16 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.244391Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.242251Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2998,9 +2983,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.226710Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.432051Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3014,14 +2998,16 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.228845Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.434247Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3030,9 +3016,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.228859Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3041,12 +3025,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.239194Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' + from ??? from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3057,10 +3039,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from ??? -2026-03-26T01:41:45.239209Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.434268Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3072,14 +3055,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.240475Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3088,11 +3072,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.240489Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3100,11 +3080,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.241647Z ERROR - kemal: Closed stream -Closed stream (IO::Error) -2026-03-26T01:41:45.070683Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3112,6 +3088,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3119,10 +3097,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.241661Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3130,29 +3105,26 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' -2026-03-26T01:41:45.242830Z ERROR - kemal: Closed stream from /app/server in '??' -Closed stream (IO::Error2026-03-26T01:41:45.236255Z ERROR - kemal: Closed stream from /app/server in '??' -) from ??? -Closed stream (IO::Error -) -2026-03-26T01:41:45.070707Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.478782Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3163,9 +3135,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' +2026-03-29T02:31:32.479438Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3178,17 +3156,12 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from ??? - from /app/server in '??' - +2026-03-29T02:31:32.481455Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' -2026-03-26T01:41:45.242843Z ERROR - http.server: Unhandled exception on HTTP::Handler -2026-03-26T01:41:45.122876Z ERROR - kemal: Error reading socket (#): Connection reset by peer from /app/server in '??' -Closed stream (IO::ErrorError reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3196,50 +3169,50 @@ Closed stream (IO::ErrorError reading socket (#): Conn from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - + from ??? from /app/server in '??' -2026-03-26T01:41:45.236269Z ERROR - http.server: Unhandled exception on HTTP::Handler +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' -) from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' - +2026-03-29T02:31:32.235474Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' -2026-03-26T01:41:45.138404Z ERROR - kemal: Closed stream - from ??? -Closed stream (IO::Error -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.235502Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3250,7 +3223,7 @@ Closed stream (IO::Error from /app/server in '??' from ??? -2026-03-26T01:41:45.138428Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.427514Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3259,14 +3232,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:41:45.211040Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3279,7 +3248,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.211057Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.427536Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3291,8 +3260,24 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.226672Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + from /app/server in '??' + from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error from /app/server in '??' +) + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3306,8 +3291,10 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.190255Z ERROR - kemal: Closed stream + from /app/server in '??' + from /app/server in '??' + from ??? +2026-03-29T02:31:32.482299Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3324,7 +3311,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.190280Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.482313Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3336,14 +3323,30 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.192087Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +2026-03-29T02:31:32.482791Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + from /app/server in '??' + + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3352,11 +3355,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.192112Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3364,15 +3363,16 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.192351Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3380,9 +3380,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.217379Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3390,6 +3388,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3397,10 +3397,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.217394Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3409,14 +3406,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.226709Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3425,15 +3423,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.234050Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3442,11 +3440,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.234066Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3454,9 +3448,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.235285Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3464,6 +3456,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3471,10 +3465,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.235299Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3483,26 +3474,25 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.235501Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.246420Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' + from ??? +2026-03-29T02:31:32.412786Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3516,7 +3506,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.162121Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.415447Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3533,7 +3523,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.162144Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.415462Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3545,7 +3535,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.165299Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.456966Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3562,7 +3552,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.165322Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.456982Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3574,7 +3564,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.207018Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.468975Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3591,7 +3581,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.207040Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.468991Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3603,8 +3593,9 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.219652Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.199830Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3619,12 +3610,8 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.219972Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:31:32.199856Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3635,8 +3622,9 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.221031Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.212549Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3651,12 +3639,8 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.231326Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:31:32.212575Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3667,7 +3651,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.240845Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.420900Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3684,7 +3668,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.240860Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.420924Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3696,23 +3680,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.238704Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:41:45.241007Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.449903Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3729,7 +3697,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.241021Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.449919Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3741,7 +3709,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.105805Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.468981Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3758,7 +3726,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.105833Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.468996Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3770,9 +3738,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.171848Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.469137Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3786,14 +3753,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.199038Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3802,9 +3770,9 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.199061Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.451860Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3813,12 +3781,12 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.223583Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.454721Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3832,9 +3800,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.223603Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3843,7 +3817,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' @@ -3852,7 +3825,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3869,7 +3842,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3886,7 +3859,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3903,7 +3876,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3920,7 +3893,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3929,15 +3902,14 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:31:32.409397Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3946,26 +3918,24 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:31:32.409422Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.412543Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -2026-03-26T01:41:45.180761Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3977,9 +3947,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' + +2026-03-29T02:31:32.412567Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3990,8 +3960,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:41:45.181583Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.421363Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4004,6 +3976,11 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? + +2026-03-29T02:31:32.421386Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4012,7 +3989,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.209221Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.427100Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4029,7 +4006,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.209245Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.427123Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4037,12 +4014,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.211014Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.429727Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4057,17 +4033,21 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' from ??? + +2026-03-29T02:31:32.429750Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.211034Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.474310Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4077,9 +4057,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4087,7 +4064,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.213728Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.474328Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4097,16 +4074,17 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.213750Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4115,7 +4093,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' @@ -4124,7 +4101,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4133,14 +4110,15 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:41:45.235476Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4149,9 +4127,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.235490Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:31:32.460957Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4160,12 +4137,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.187566Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.461216Z ERROR - kemal: Error reading socket (#): Connection reset by peer +2026-03-29T02:31:32.446949Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4178,11 +4158,14 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? + from /app/server in '??' -2026-03-26T01:41:45.187590Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) + from /app/server in '??' +2026-03-29T02:31:32.495972Z ERROR - kemal: Error while flushing data to the client from /app/server in '??' from /app/server in '??' +Error while flushing data to the client (HTTP::Server::ClientError from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4191,8 +4174,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.230009Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4206,9 +4189,9 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.240103Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4224,7 +4207,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.240118Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.495987Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4236,13 +4219,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.240619Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4251,9 +4236,9 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.194887Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.396434Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4268,8 +4253,8 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.198125Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:31:32.396455Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4277,14 +4262,16 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.464612Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4292,7 +4279,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) + +2026-03-29T02:31:32.487852Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4300,8 +4289,6 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4309,7 +4296,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.487865Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4318,15 +4308,15 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:31:32.496681Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4335,7 +4325,11 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:31:32.496693Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4343,7 +4337,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:31:32.465339Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4351,13 +4348,15 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -2026-03-26T01:41:45.014028Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.465355Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4368,7 +4367,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.169534Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.362721Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4385,7 +4384,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.169558Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.362746Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4397,7 +4396,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.210140Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.426840Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4414,7 +4413,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.210155Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.426866Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4426,7 +4425,22 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.225936Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.459734Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:31:32.469274Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4443,7 +4457,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.225952Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.469287Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4455,7 +4469,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.227596Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.485185Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4472,7 +4486,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.227610Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.485198Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4484,7 +4498,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.231160Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.480016Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4501,7 +4515,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.231174Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.480029Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4513,14 +4527,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.240473Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4529,10 +4544,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.240486Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4541,8 +4561,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:41:45.249648Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.236464Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4559,7 +4578,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.249660Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.236488Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4571,7 +4590,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.250776Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.493403Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4588,7 +4607,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.250788Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.493417Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4600,7 +4619,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.258928Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.494448Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4617,7 +4636,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.258939Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.494460Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4629,9 +4648,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.259100Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.355546Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4645,7 +4663,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.260300Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.358199Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4662,7 +4680,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.260315Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.358233Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4674,9 +4692,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.268087Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.359900Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4690,7 +4707,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:41:45.114733Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.362449Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4707,7 +4724,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.114758Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.362467Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4719,7 +4736,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.188013Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.408949Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4736,7 +4753,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.188029Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.408970Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4748,25 +4765,11 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.220010Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' +2026-03-29T02:31:32.443846Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:41:45.220027Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4777,7 +4780,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.232821Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.475881Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4794,7 +4797,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.232841Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.475901Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4806,9 +4809,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.248985Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:31:32.486546Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4823,9 +4825,9 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:31:32.486560Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4834,15 +4836,15 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.496758Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:41:45.248999Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4853,7 +4855,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.250089Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.496770Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4863,15 +4865,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:31:32.496864Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:41:45.250101Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4882,7 +4882,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.258631Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.497995Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4899,7 +4899,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.258643Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.498006Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4911,7 +4911,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.260110Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.505747Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4928,7 +4928,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.260121Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.505761Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4940,7 +4940,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.261242Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.506847Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4957,7 +4957,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.261253Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.506860Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4969,7 +4969,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.271471Z ERROR - kemal: Closed stream +2026-03-29T02:31:32.523077Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4986,7 +4986,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:41:45.271485Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:31:32.523090Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' diff --git a/site/static/logs/mixed/16384/koa.log b/site/static/logs/mixed/16384/koa.log index 386f66ed..e69de29b 100644 --- a/site/static/logs/mixed/16384/koa.log +++ b/site/static/logs/mixed/16384/koa.log @@ -1,168 +0,0 @@ - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - - - Error: Parse Error - at socketOnEnd (node:_http_server:844:22) - at Socket.emit (node:events:531:35) - at endReadableNT (node:internal/streams/readable:1698:12) - at process.processTicksAndRejections (node:internal/process/task_queues:89:21) - - - Error: aborted - at abortIncoming (node:_http_server:838:17) - at socketOnClose (node:_http_server:832:3) - at Socket.emit (node:events:531:35) - at TCP. (node:net:346:12) - diff --git a/site/static/logs/mixed/16384/rails.log b/site/static/logs/mixed/16384/rails.log index 35736eed..f624d403 100644 --- a/site/static/logs/mixed/16384/rails.log +++ b/site/static/logs/mixed/16384/rails.log @@ -13,131 +13,131 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 8) booted in 0.31s, phase: 0 -[1] - Worker 1 (PID: 12) booted in 0.31s, phase: 0 -[1] - Worker 2 (PID: 16) booted in 0.31s, phase: 0 -[1] - Worker 3 (PID: 20) booted in 0.31s, phase: 0 -[1] - Worker 4 (PID: 24) booted in 0.31s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.3s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.3s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.3s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.3s, phase: 0 -[1] - Worker 9 (PID: 50) booted in 0.29s, phase: 0 -[1] - Worker 10 (PID: 56) booted in 0.29s, phase: 0 -[1] - Worker 11 (PID: 62) booted in 0.29s, phase: 0 -[1] - Worker 12 (PID: 68) booted in 0.29s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.28s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.28s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.28s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.28s, phase: 0 -[1] - Worker 17 (PID: 100) booted in 0.28s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.28s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.27s, phase: 0 -[1] - Worker 20 (PID: 117) booted in 0.27s, phase: 0 -[1] - Worker 21 (PID: 123) booted in 0.27s, phase: 0 -[1] - Worker 22 (PID: 128) booted in 0.27s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.27s, phase: 0 -[1] - Worker 24 (PID: 139) booted in 0.26s, phase: 0 -[1] - Worker 25 (PID: 145) booted in 0.26s, phase: 0 -[1] - Worker 26 (PID: 151) booted in 0.26s, phase: 0 -[1] - Worker 27 (PID: 157) booted in 0.26s, phase: 0 -[1] - Worker 28 (PID: 163) booted in 0.26s, phase: 0 -[1] - Worker 29 (PID: 170) booted in 0.25s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.25s, phase: 0 -[1] - Worker 31 (PID: 184) booted in 0.25s, phase: 0 -[1] - Worker 32 (PID: 189) booted in 0.25s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.24s, phase: 0 -[1] - Worker 34 (PID: 200) booted in 0.24s, phase: 0 -[1] - Worker 35 (PID: 206) booted in 0.24s, phase: 0 -[1] - Worker 36 (PID: 212) booted in 0.24s, phase: 0 -[1] - Worker 37 (PID: 217) booted in 0.24s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.23s, phase: 0 -[1] - Worker 39 (PID: 228) booted in 0.23s, phase: 0 -[1] - Worker 40 (PID: 233) booted in 0.23s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.23s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.23s, phase: 0 -[1] - Worker 43 (PID: 251) booted in 0.22s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.22s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.22s, phase: 0 -[1] - Worker 46 (PID: 269) booted in 0.22s, phase: 0 -[1] - Worker 47 (PID: 275) booted in 0.22s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.21s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.21s, phase: 0 -[1] - Worker 50 (PID: 293) booted in 0.21s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.21s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.2s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.2s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.2s, phase: 0 -[1] - Worker 55 (PID: 323) booted in 0.2s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.2s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.19s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.19s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.19s, phase: 0 -[1] - Worker 60 (PID: 354) booted in 0.19s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.19s, phase: 0 -[1] - Worker 62 (PID: 365) booted in 0.18s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.18s, phase: 0 -[1] - Worker 64 (PID: 377) booted in 0.18s, phase: 0 -[1] - Worker 65 (PID: 383) booted in 0.18s, phase: 0 -[1] - Worker 66 (PID: 390) booted in 0.18s, phase: 0 -[1] - Worker 67 (PID: 395) booted in 0.17s, phase: 0 -[1] - Worker 68 (PID: 402) booted in 0.17s, phase: 0 -[1] - Worker 69 (PID: 407) booted in 0.17s, phase: 0 -[1] - Worker 70 (PID: 414) booted in 0.17s, phase: 0 -[1] - Worker 71 (PID: 420) booted in 0.16s, phase: 0 -[1] - Worker 72 (PID: 425) booted in 0.16s, phase: 0 -[1] - Worker 73 (PID: 432) booted in 0.16s, phase: 0 -[1] - Worker 74 (PID: 438) booted in 0.16s, phase: 0 -[1] - Worker 75 (PID: 443) booted in 0.16s, phase: 0 -[1] - Worker 76 (PID: 449) booted in 0.15s, phase: 0 -[1] - Worker 77 (PID: 456) booted in 0.15s, phase: 0 -[1] - Worker 78 (PID: 461) booted in 0.15s, phase: 0 -[1] - Worker 79 (PID: 468) booted in 0.15s, phase: 0 -[1] - Worker 80 (PID: 474) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 8) booted in 0.36s, phase: 0 +[1] - Worker 1 (PID: 12) booted in 0.35s, phase: 0 +[1] - Worker 2 (PID: 16) booted in 0.35s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.34s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.34s, phase: 0 +[1] - Worker 5 (PID: 30) booted in 0.34s, phase: 0 +[1] - Worker 6 (PID: 36) booted in 0.33s, phase: 0 +[1] - Worker 7 (PID: 40) booted in 0.33s, phase: 0 +[1] - Worker 8 (PID: 46) booted in 0.33s, phase: 0 +[1] - Worker 9 (PID: 52) booted in 0.33s, phase: 0 +[1] - Worker 10 (PID: 57) booted in 0.32s, phase: 0 +[1] - Worker 11 (PID: 63) booted in 0.32s, phase: 0 +[1] - Worker 12 (PID: 68) booted in 0.32s, phase: 0 +[1] - Worker 13 (PID: 74) booted in 0.32s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.31s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.31s, phase: 0 +[1] - Worker 16 (PID: 94) booted in 0.31s, phase: 0 +[1] - Worker 17 (PID: 100) booted in 0.31s, phase: 0 +[1] - Worker 18 (PID: 107) booted in 0.31s, phase: 0 +[1] - Worker 19 (PID: 113) booted in 0.3s, phase: 0 +[1] - Worker 20 (PID: 119) booted in 0.3s, phase: 0 +[1] - Worker 21 (PID: 123) booted in 0.3s, phase: 0 +[1] - Worker 22 (PID: 129) booted in 0.3s, phase: 0 +[1] - Worker 23 (PID: 135) booted in 0.29s, phase: 0 +[1] - Worker 24 (PID: 141) booted in 0.29s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.29s, phase: 0 +[1] - Worker 26 (PID: 152) booted in 0.29s, phase: 0 +[1] - Worker 27 (PID: 158) booted in 0.29s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.28s, phase: 0 +[1] - Worker 29 (PID: 172) booted in 0.28s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.28s, phase: 0 +[1] - Worker 31 (PID: 186) booted in 0.27s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.27s, phase: 0 +[1] - Worker 33 (PID: 197) booted in 0.27s, phase: 0 +[1] - Worker 34 (PID: 202) booted in 0.27s, phase: 0 +[1] - Worker 35 (PID: 208) booted in 0.26s, phase: 0 +[1] - Worker 36 (PID: 213) booted in 0.26s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.26s, phase: 0 +[1] - Worker 38 (PID: 224) booted in 0.26s, phase: 0 +[1] - Worker 39 (PID: 230) booted in 0.26s, phase: 0 +[1] - Worker 40 (PID: 237) booted in 0.25s, phase: 0 +[1] - Worker 41 (PID: 244) booted in 0.25s, phase: 0 +[1] - Worker 42 (PID: 250) booted in 0.25s, phase: 0 +[1] - Worker 43 (PID: 255) booted in 0.24s, phase: 0 +[1] - Worker 44 (PID: 261) booted in 0.24s, phase: 0 +[1] - Worker 45 (PID: 267) booted in 0.24s, phase: 0 +[1] - Worker 46 (PID: 273) booted in 0.24s, phase: 0 +[1] - Worker 47 (PID: 277) booted in 0.24s, phase: 0 +[1] - Worker 48 (PID: 283) booted in 0.23s, phase: 0 +[1] - Worker 49 (PID: 290) booted in 0.23s, phase: 0 +[1] - Worker 50 (PID: 295) booted in 0.23s, phase: 0 +[1] - Worker 51 (PID: 302) booted in 0.23s, phase: 0 +[1] - Worker 52 (PID: 308) booted in 0.22s, phase: 0 +[1] - Worker 53 (PID: 314) booted in 0.22s, phase: 0 +[1] - Worker 54 (PID: 322) booted in 0.22s, phase: 0 +[1] - Worker 55 (PID: 328) booted in 0.21s, phase: 0 +[1] - Worker 56 (PID: 335) booted in 0.21s, phase: 0 +[1] - Worker 57 (PID: 340) booted in 0.21s, phase: 0 +[1] - Worker 58 (PID: 345) booted in 0.21s, phase: 0 +[1] - Worker 59 (PID: 351) booted in 0.2s, phase: 0 +[1] - Worker 60 (PID: 357) booted in 0.2s, phase: 0 +[1] - Worker 61 (PID: 362) booted in 0.2s, phase: 0 +[1] - Worker 62 (PID: 368) booted in 0.2s, phase: 0 +[1] - Worker 63 (PID: 374) booted in 0.19s, phase: 0 +[1] - Worker 64 (PID: 379) booted in 0.19s, phase: 0 +[1] - Worker 65 (PID: 384) booted in 0.19s, phase: 0 +[1] - Worker 66 (PID: 390) booted in 0.19s, phase: 0 +[1] - Worker 67 (PID: 396) booted in 0.19s, phase: 0 +[1] - Worker 68 (PID: 402) booted in 0.18s, phase: 0 +[1] - Worker 69 (PID: 409) booted in 0.18s, phase: 0 +[1] - Worker 70 (PID: 414) booted in 0.18s, phase: 0 +[1] - Worker 71 (PID: 420) booted in 0.18s, phase: 0 +[1] - Worker 72 (PID: 426) booted in 0.17s, phase: 0 +[1] - Worker 73 (PID: 434) booted in 0.17s, phase: 0 +[1] - Worker 74 (PID: 439) booted in 0.17s, phase: 0 +[1] - Worker 75 (PID: 445) booted in 0.17s, phase: 0 +[1] - Worker 76 (PID: 451) booted in 0.16s, phase: 0 +[1] - Worker 77 (PID: 457) booted in 0.16s, phase: 0 +[1] - Worker 78 (PID: 463) booted in 0.16s, phase: 0 +[1] - Worker 79 (PID: 468) booted in 0.16s, phase: 0 +[1] - Worker 80 (PID: 474) booted in 0.16s, phase: 0 [1] - Worker 81 (PID: 480) booted in 0.15s, phase: 0 [1] - Worker 82 (PID: 486) booted in 0.15s, phase: 0 [1] - Worker 83 (PID: 492) booted in 0.15s, phase: 0 -[1] - Worker 84 (PID: 498) booted in 0.15s, phase: 0 -[1] - Worker 85 (PID: 504) booted in 0.14s, phase: 0 -[1] - Worker 86 (PID: 509) booted in 0.15s, phase: 0 -[1] - Worker 87 (PID: 516) booted in 0.14s, phase: 0 -[1] - Worker 88 (PID: 522) booted in 0.14s, phase: 0 -[1] - Worker 89 (PID: 528) booted in 0.14s, phase: 0 -[1] - Worker 90 (PID: 534) booted in 0.14s, phase: 0 -[1] - Worker 91 (PID: 539) booted in 0.13s, phase: 0 -[1] - Worker 92 (PID: 546) booted in 0.13s, phase: 0 -[1] - Worker 93 (PID: 551) booted in 0.13s, phase: 0 -[1] - Worker 94 (PID: 558) booted in 0.13s, phase: 0 -[1] - Worker 95 (PID: 564) booted in 0.13s, phase: 0 -[1] - Worker 96 (PID: 570) booted in 0.12s, phase: 0 -[1] - Worker 97 (PID: 576) booted in 0.12s, phase: 0 -[1] - Worker 98 (PID: 582) booted in 0.12s, phase: 0 -[1] - Worker 99 (PID: 588) booted in 0.12s, phase: 0 -[1] - Worker 100 (PID: 594) booted in 0.12s, phase: 0 -[1] - Worker 101 (PID: 600) booted in 0.11s, phase: 0 -[1] - Worker 102 (PID: 606) booted in 0.11s, phase: 0 -[1] - Worker 103 (PID: 612) booted in 0.11s, phase: 0 +[1] - Worker 84 (PID: 499) booted in 0.15s, phase: 0 +[1] - Worker 85 (PID: 505) booted in 0.14s, phase: 0 +[1] - Worker 86 (PID: 511) booted in 0.14s, phase: 0 +[1] - Worker 87 (PID: 517) booted in 0.14s, phase: 0 +[1] - Worker 88 (PID: 523) booted in 0.14s, phase: 0 +[1] - Worker 89 (PID: 529) booted in 0.15s, phase: 0 +[1] - Worker 90 (PID: 535) booted in 0.14s, phase: 0 +[1] - Worker 91 (PID: 542) booted in 0.14s, phase: 0 +[1] - Worker 92 (PID: 548) booted in 0.14s, phase: 0 +[1] - Worker 93 (PID: 554) booted in 0.13s, phase: 0 +[1] - Worker 94 (PID: 560) booted in 0.13s, phase: 0 +[1] - Worker 95 (PID: 566) booted in 0.13s, phase: 0 +[1] - Worker 96 (PID: 572) booted in 0.13s, phase: 0 +[1] - Worker 97 (PID: 578) booted in 0.13s, phase: 0 +[1] - Worker 98 (PID: 584) booted in 0.12s, phase: 0 +[1] - Worker 99 (PID: 590) booted in 0.12s, phase: 0 +[1] - Worker 100 (PID: 596) booted in 0.12s, phase: 0 +[1] - Worker 101 (PID: 602) booted in 0.12s, phase: 0 +[1] - Worker 102 (PID: 607) booted in 0.12s, phase: 0 +[1] - Worker 103 (PID: 612) booted in 0.12s, phase: 0 [1] - Worker 104 (PID: 618) booted in 0.11s, phase: 0 -[1] - Worker 105 (PID: 624) booted in 0.1s, phase: 0 -[1] - Worker 106 (PID: 630) booted in 0.1s, phase: 0 -[1] - Worker 107 (PID: 636) booted in 0.1s, phase: 0 -[1] - Worker 108 (PID: 642) booted in 0.1s, phase: 0 -[1] - Worker 109 (PID: 648) booted in 0.1s, phase: 0 -[1] - Worker 110 (PID: 654) booted in 0.09s, phase: 0 -[1] - Worker 111 (PID: 660) booted in 0.09s, phase: 0 -[1] - Worker 112 (PID: 665) booted in 0.09s, phase: 0 -[1] - Worker 113 (PID: 672) booted in 0.09s, phase: 0 -[1] - Worker 114 (PID: 678) booted in 0.09s, phase: 0 -[1] - Worker 115 (PID: 684) booted in 0.08s, phase: 0 -[1] - Worker 116 (PID: 690) booted in 0.08s, phase: 0 -[1] - Worker 117 (PID: 696) booted in 0.08s, phase: 0 -[1] - Worker 118 (PID: 702) booted in 0.08s, phase: 0 -[1] - Worker 119 (PID: 708) booted in 0.07s, phase: 0 -[1] - Worker 120 (PID: 714) booted in 0.07s, phase: 0 -[1] - Worker 121 (PID: 720) booted in 0.07s, phase: 0 -[1] - Worker 122 (PID: 726) booted in 0.07s, phase: 0 -[1] - Worker 123 (PID: 732) booted in 0.07s, phase: 0 -[1] - Worker 124 (PID: 738) booted in 0.06s, phase: 0 -[1] - Worker 125 (PID: 744) booted in 0.06s, phase: 0 -[1] - Worker 126 (PID: 750) booted in 0.06s, phase: 0 -[1] - Worker 127 (PID: 756) booted in 0.06s, phase: 0 +[1] - Worker 105 (PID: 625) booted in 0.11s, phase: 0 +[1] - Worker 106 (PID: 630) booted in 0.11s, phase: 0 +[1] - Worker 107 (PID: 637) booted in 0.11s, phase: 0 +[1] - Worker 108 (PID: 644) booted in 0.1s, phase: 0 +[1] - Worker 109 (PID: 650) booted in 0.1s, phase: 0 +[1] - Worker 110 (PID: 656) booted in 0.1s, phase: 0 +[1] - Worker 111 (PID: 662) booted in 0.1s, phase: 0 +[1] - Worker 112 (PID: 667) booted in 0.09s, phase: 0 +[1] - Worker 113 (PID: 674) booted in 0.09s, phase: 0 +[1] - Worker 114 (PID: 680) booted in 0.09s, phase: 0 +[1] - Worker 115 (PID: 686) booted in 0.09s, phase: 0 +[1] - Worker 116 (PID: 691) booted in 0.09s, phase: 0 +[1] - Worker 117 (PID: 698) booted in 0.08s, phase: 0 +[1] - Worker 118 (PID: 704) booted in 0.08s, phase: 0 +[1] - Worker 119 (PID: 710) booted in 0.08s, phase: 0 +[1] - Worker 120 (PID: 715) booted in 0.08s, phase: 0 +[1] - Worker 121 (PID: 722) booted in 0.07s, phase: 0 +[1] - Worker 122 (PID: 728) booted in 0.07s, phase: 0 +[1] - Worker 123 (PID: 734) booted in 0.07s, phase: 0 +[1] - Worker 124 (PID: 740) booted in 0.07s, phase: 0 +[1] - Worker 125 (PID: 746) booted in 0.06s, phase: 0 +[1] - Worker 126 (PID: 751) booted in 0.06s, phase: 0 +[1] - Worker 127 (PID: 758) booted in 0.06s, phase: 0 diff --git a/site/static/logs/mixed/16384/sinatra.log b/site/static/logs/mixed/16384/sinatra.log index 7962559c..99963932 100644 --- a/site/static/logs/mixed/16384/sinatra.log +++ b/site/static/logs/mixed/16384/sinatra.log @@ -13,131 +13,131 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 8) booted in 0.24s, phase: 0 -[1] - Worker 1 (PID: 12) booted in 0.24s, phase: 0 -[1] - Worker 2 (PID: 16) booted in 0.23s, phase: 0 -[1] - Worker 3 (PID: 20) booted in 0.23s, phase: 0 -[1] - Worker 4 (PID: 24) booted in 0.23s, phase: 0 -[1] - Worker 5 (PID: 28) booted in 0.23s, phase: 0 -[1] - Worker 6 (PID: 32) booted in 0.23s, phase: 0 -[1] - Worker 7 (PID: 37) booted in 0.23s, phase: 0 -[1] - Worker 8 (PID: 42) booted in 0.23s, phase: 0 -[1] - Worker 9 (PID: 47) booted in 0.22s, phase: 0 -[1] - Worker 10 (PID: 52) booted in 0.22s, phase: 0 -[1] - Worker 11 (PID: 57) booted in 0.22s, phase: 0 -[1] - Worker 12 (PID: 62) booted in 0.22s, phase: 0 -[1] - Worker 13 (PID: 68) booted in 0.22s, phase: 0 -[1] - Worker 14 (PID: 78) booted in 0.21s, phase: 0 -[1] - Worker 15 (PID: 86) booted in 0.21s, phase: 0 -[1] - Worker 16 (PID: 92) booted in 0.21s, phase: 0 -[1] - Worker 17 (PID: 98) booted in 0.21s, phase: 0 -[1] - Worker 18 (PID: 103) booted in 0.21s, phase: 0 -[1] - Worker 19 (PID: 108) booted in 0.21s, phase: 0 -[1] - Worker 20 (PID: 115) booted in 0.21s, phase: 0 -[1] - Worker 21 (PID: 121) booted in 0.2s, phase: 0 -[1] - Worker 22 (PID: 126) booted in 0.2s, phase: 0 -[1] - Worker 23 (PID: 131) booted in 0.2s, phase: 0 -[1] - Worker 24 (PID: 137) booted in 0.2s, phase: 0 -[1] - Worker 25 (PID: 143) booted in 0.2s, phase: 0 -[1] - Worker 26 (PID: 149) booted in 0.2s, phase: 0 -[1] - Worker 27 (PID: 154) booted in 0.19s, phase: 0 -[1] - Worker 28 (PID: 160) booted in 0.19s, phase: 0 -[1] - Worker 29 (PID: 167) booted in 0.19s, phase: 0 -[1] - Worker 30 (PID: 177) booted in 0.19s, phase: 0 -[1] - Worker 31 (PID: 180) booted in 0.19s, phase: 0 -[1] - Worker 32 (PID: 188) booted in 0.19s, phase: 0 -[1] - Worker 33 (PID: 192) booted in 0.18s, phase: 0 -[1] - Worker 34 (PID: 196) booted in 0.18s, phase: 0 -[1] - Worker 35 (PID: 202) booted in 0.18s, phase: 0 -[1] - Worker 36 (PID: 207) booted in 0.19s, phase: 0 -[1] - Worker 37 (PID: 212) booted in 0.19s, phase: 0 -[1] - Worker 38 (PID: 218) booted in 0.19s, phase: 0 -[1] - Worker 39 (PID: 224) booted in 0.19s, phase: 0 -[1] - Worker 40 (PID: 229) booted in 0.19s, phase: 0 -[1] - Worker 41 (PID: 234) booted in 0.18s, phase: 0 -[1] - Worker 42 (PID: 240) booted in 0.18s, phase: 0 -[1] - Worker 43 (PID: 245) booted in 0.18s, phase: 0 -[1] - Worker 44 (PID: 250) booted in 0.18s, phase: 0 -[1] - Worker 45 (PID: 257) booted in 0.18s, phase: 0 -[1] - Worker 46 (PID: 263) booted in 0.18s, phase: 0 -[1] - Worker 47 (PID: 269) booted in 0.18s, phase: 0 -[1] - Worker 48 (PID: 275) booted in 0.18s, phase: 0 -[1] - Worker 49 (PID: 281) booted in 0.18s, phase: 0 -[1] - Worker 50 (PID: 287) booted in 0.17s, phase: 0 -[1] - Worker 51 (PID: 293) booted in 0.17s, phase: 0 -[1] - Worker 52 (PID: 299) booted in 0.17s, phase: 0 -[1] - Worker 53 (PID: 305) booted in 0.17s, phase: 0 -[1] - Worker 54 (PID: 311) booted in 0.17s, phase: 0 -[1] - Worker 55 (PID: 317) booted in 0.17s, phase: 0 -[1] - Worker 56 (PID: 323) booted in 0.17s, phase: 0 -[1] - Worker 57 (PID: 329) booted in 0.16s, phase: 0 -[1] - Worker 58 (PID: 335) booted in 0.16s, phase: 0 -[1] - Worker 59 (PID: 341) booted in 0.16s, phase: 0 -[1] - Worker 60 (PID: 347) booted in 0.16s, phase: 0 -[1] - Worker 61 (PID: 353) booted in 0.16s, phase: 0 -[1] - Worker 62 (PID: 359) booted in 0.16s, phase: 0 -[1] - Worker 63 (PID: 365) booted in 0.16s, phase: 0 -[1] - Worker 64 (PID: 371) booted in 0.15s, phase: 0 -[1] - Worker 65 (PID: 377) booted in 0.15s, phase: 0 -[1] - Worker 66 (PID: 383) booted in 0.15s, phase: 0 -[1] - Worker 67 (PID: 389) booted in 0.15s, phase: 0 -[1] - Worker 68 (PID: 395) booted in 0.15s, phase: 0 -[1] - Worker 69 (PID: 401) booted in 0.15s, phase: 0 -[1] - Worker 70 (PID: 407) booted in 0.15s, phase: 0 -[1] - Worker 71 (PID: 413) booted in 0.14s, phase: 0 -[1] - Worker 72 (PID: 419) booted in 0.14s, phase: 0 -[1] - Worker 73 (PID: 425) booted in 0.14s, phase: 0 -[1] - Worker 74 (PID: 431) booted in 0.14s, phase: 0 -[1] - Worker 75 (PID: 437) booted in 0.14s, phase: 0 -[1] - Worker 76 (PID: 443) booted in 0.14s, phase: 0 -[1] - Worker 77 (PID: 449) booted in 0.14s, phase: 0 -[1] - Worker 78 (PID: 455) booted in 0.13s, phase: 0 -[1] - Worker 79 (PID: 464) booted in 0.13s, phase: 0 -[1] - Worker 80 (PID: 469) booted in 0.13s, phase: 0 -[1] - Worker 81 (PID: 475) booted in 0.13s, phase: 0 -[1] - Worker 82 (PID: 481) booted in 0.13s, phase: 0 -[1] - Worker 83 (PID: 487) booted in 0.13s, phase: 0 -[1] - Worker 84 (PID: 493) booted in 0.12s, phase: 0 -[1] - Worker 85 (PID: 499) booted in 0.12s, phase: 0 -[1] - Worker 86 (PID: 504) booted in 0.12s, phase: 0 -[1] - Worker 87 (PID: 510) booted in 0.12s, phase: 0 -[1] - Worker 88 (PID: 516) booted in 0.12s, phase: 0 -[1] - Worker 89 (PID: 522) booted in 0.12s, phase: 0 -[1] - Worker 90 (PID: 528) booted in 0.11s, phase: 0 -[1] - Worker 91 (PID: 534) booted in 0.11s, phase: 0 -[1] - Worker 92 (PID: 539) booted in 0.11s, phase: 0 -[1] - Worker 93 (PID: 548) booted in 0.11s, phase: 0 -[1] - Worker 94 (PID: 555) booted in 0.11s, phase: 0 -[1] - Worker 95 (PID: 562) booted in 0.1s, phase: 0 -[1] - Worker 96 (PID: 567) booted in 0.1s, phase: 0 -[1] - Worker 97 (PID: 573) booted in 0.1s, phase: 0 -[1] - Worker 98 (PID: 579) booted in 0.1s, phase: 0 -[1] - Worker 99 (PID: 584) booted in 0.1s, phase: 0 -[1] - Worker 100 (PID: 590) booted in 0.1s, phase: 0 -[1] - Worker 101 (PID: 596) booted in 0.1s, phase: 0 -[1] - Worker 102 (PID: 602) booted in 0.09s, phase: 0 -[1] - Worker 103 (PID: 608) booted in 0.09s, phase: 0 -[1] - Worker 104 (PID: 614) booted in 0.09s, phase: 0 -[1] - Worker 105 (PID: 619) booted in 0.09s, phase: 0 -[1] - Worker 106 (PID: 625) booted in 0.09s, phase: 0 -[1] - Worker 107 (PID: 631) booted in 0.09s, phase: 0 -[1] - Worker 108 (PID: 637) booted in 0.08s, phase: 0 -[1] - Worker 109 (PID: 643) booted in 0.08s, phase: 0 -[1] - Worker 110 (PID: 649) booted in 0.08s, phase: 0 -[1] - Worker 111 (PID: 655) booted in 0.08s, phase: 0 -[1] - Worker 112 (PID: 661) booted in 0.08s, phase: 0 -[1] - Worker 113 (PID: 667) booted in 0.08s, phase: 0 -[1] - Worker 114 (PID: 673) booted in 0.07s, phase: 0 -[1] - Worker 115 (PID: 678) booted in 0.07s, phase: 0 +[1] - Worker 0 (PID: 8) booted in 0.27s, phase: 0 +[1] - Worker 1 (PID: 12) booted in 0.27s, phase: 0 +[1] - Worker 2 (PID: 16) booted in 0.27s, phase: 0 +[1] - Worker 3 (PID: 20) booted in 0.26s, phase: 0 +[1] - Worker 4 (PID: 24) booted in 0.26s, phase: 0 +[1] - Worker 5 (PID: 30) booted in 0.26s, phase: 0 +[1] - Worker 6 (PID: 35) booted in 0.26s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.25s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.25s, phase: 0 +[1] - Worker 9 (PID: 50) booted in 0.25s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.25s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.25s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.24s, phase: 0 +[1] - Worker 13 (PID: 74) booted in 0.24s, phase: 0 +[1] - Worker 14 (PID: 83) booted in 0.24s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.24s, phase: 0 +[1] - Worker 16 (PID: 94) booted in 0.24s, phase: 0 +[1] - Worker 17 (PID: 98) booted in 0.24s, phase: 0 +[1] - Worker 18 (PID: 104) booted in 0.24s, phase: 0 +[1] - Worker 19 (PID: 109) booted in 0.24s, phase: 0 +[1] - Worker 20 (PID: 114) booted in 0.24s, phase: 0 +[1] - Worker 21 (PID: 119) booted in 0.24s, phase: 0 +[1] - Worker 22 (PID: 125) booted in 0.24s, phase: 0 +[1] - Worker 23 (PID: 130) booted in 0.24s, phase: 0 +[1] - Worker 24 (PID: 136) booted in 0.24s, phase: 0 +[1] - Worker 25 (PID: 141) booted in 0.24s, phase: 0 +[1] - Worker 26 (PID: 146) booted in 0.24s, phase: 0 +[1] - Worker 27 (PID: 152) booted in 0.23s, phase: 0 +[1] - Worker 28 (PID: 158) booted in 0.23s, phase: 0 +[1] - Worker 29 (PID: 166) booted in 0.23s, phase: 0 +[1] - Worker 30 (PID: 176) booted in 0.23s, phase: 0 +[1] - Worker 31 (PID: 181) booted in 0.23s, phase: 0 +[1] - Worker 32 (PID: 187) booted in 0.22s, phase: 0 +[1] - Worker 33 (PID: 192) booted in 0.22s, phase: 0 +[1] - Worker 34 (PID: 199) booted in 0.22s, phase: 0 +[1] - Worker 35 (PID: 204) booted in 0.22s, phase: 0 +[1] - Worker 36 (PID: 209) booted in 0.22s, phase: 0 +[1] - Worker 37 (PID: 215) booted in 0.22s, phase: 0 +[1] - Worker 38 (PID: 220) booted in 0.22s, phase: 0 +[1] - Worker 39 (PID: 225) booted in 0.21s, phase: 0 +[1] - Worker 40 (PID: 232) booted in 0.21s, phase: 0 +[1] - Worker 41 (PID: 237) booted in 0.21s, phase: 0 +[1] - Worker 42 (PID: 242) booted in 0.21s, phase: 0 +[1] - Worker 43 (PID: 248) booted in 0.21s, phase: 0 +[1] - Worker 44 (PID: 254) booted in 0.21s, phase: 0 +[1] - Worker 45 (PID: 260) booted in 0.2s, phase: 0 +[1] - Worker 46 (PID: 265) booted in 0.2s, phase: 0 +[1] - Worker 47 (PID: 271) booted in 0.2s, phase: 0 +[1] - Worker 48 (PID: 276) booted in 0.2s, phase: 0 +[1] - Worker 49 (PID: 282) booted in 0.2s, phase: 0 +[1] - Worker 50 (PID: 288) booted in 0.2s, phase: 0 +[1] - Worker 51 (PID: 294) booted in 0.2s, phase: 0 +[1] - Worker 52 (PID: 300) booted in 0.19s, phase: 0 +[1] - Worker 53 (PID: 306) booted in 0.19s, phase: 0 +[1] - Worker 54 (PID: 311) booted in 0.19s, phase: 0 +[1] - Worker 55 (PID: 317) booted in 0.19s, phase: 0 +[1] - Worker 56 (PID: 324) booted in 0.19s, phase: 0 +[1] - Worker 57 (PID: 329) booted in 0.19s, phase: 0 +[1] - Worker 58 (PID: 335) booted in 0.18s, phase: 0 +[1] - Worker 59 (PID: 341) booted in 0.18s, phase: 0 +[1] - Worker 60 (PID: 349) booted in 0.18s, phase: 0 +[1] - Worker 61 (PID: 355) booted in 0.18s, phase: 0 +[1] - Worker 62 (PID: 361) booted in 0.18s, phase: 0 +[1] - Worker 63 (PID: 366) booted in 0.18s, phase: 0 +[1] - Worker 64 (PID: 374) booted in 0.17s, phase: 0 +[1] - Worker 65 (PID: 382) booted in 0.17s, phase: 0 +[1] - Worker 66 (PID: 390) booted in 0.17s, phase: 0 +[1] - Worker 67 (PID: 396) booted in 0.17s, phase: 0 +[1] - Worker 68 (PID: 401) booted in 0.16s, phase: 0 +[1] - Worker 69 (PID: 409) booted in 0.16s, phase: 0 +[1] - Worker 70 (PID: 414) booted in 0.16s, phase: 0 +[1] - Worker 71 (PID: 419) booted in 0.16s, phase: 0 +[1] - Worker 72 (PID: 428) booted in 0.15s, phase: 0 +[1] - Worker 73 (PID: 433) booted in 0.15s, phase: 0 +[1] - Worker 74 (PID: 438) booted in 0.15s, phase: 0 +[1] - Worker 75 (PID: 443) booted in 0.15s, phase: 0 +[1] - Worker 76 (PID: 449) booted in 0.15s, phase: 0 +[1] - Worker 77 (PID: 456) booted in 0.14s, phase: 0 +[1] - Worker 78 (PID: 461) booted in 0.14s, phase: 0 +[1] - Worker 79 (PID: 467) booted in 0.14s, phase: 0 +[1] - Worker 80 (PID: 474) booted in 0.14s, phase: 0 +[1] - Worker 81 (PID: 480) booted in 0.14s, phase: 0 +[1] - Worker 82 (PID: 484) booted in 0.13s, phase: 0 +[1] - Worker 83 (PID: 489) booted in 0.13s, phase: 0 +[1] - Worker 84 (PID: 495) booted in 0.13s, phase: 0 +[1] - Worker 85 (PID: 501) booted in 0.13s, phase: 0 +[1] - Worker 86 (PID: 507) booted in 0.13s, phase: 0 +[1] - Worker 87 (PID: 514) booted in 0.12s, phase: 0 +[1] - Worker 88 (PID: 518) booted in 0.12s, phase: 0 +[1] - Worker 89 (PID: 524) booted in 0.12s, phase: 0 +[1] - Worker 90 (PID: 530) booted in 0.12s, phase: 0 +[1] - Worker 91 (PID: 537) booted in 0.12s, phase: 0 +[1] - Worker 92 (PID: 544) booted in 0.12s, phase: 0 +[1] - Worker 93 (PID: 551) booted in 0.11s, phase: 0 +[1] - Worker 94 (PID: 556) booted in 0.11s, phase: 0 +[1] - Worker 95 (PID: 562) booted in 0.11s, phase: 0 +[1] - Worker 96 (PID: 571) booted in 0.11s, phase: 0 +[1] - Worker 97 (PID: 576) booted in 0.1s, phase: 0 +[1] - Worker 98 (PID: 581) booted in 0.1s, phase: 0 +[1] - Worker 99 (PID: 586) booted in 0.1s, phase: 0 +[1] - Worker 100 (PID: 592) booted in 0.1s, phase: 0 +[1] - Worker 101 (PID: 597) booted in 0.1s, phase: 0 +[1] - Worker 102 (PID: 603) booted in 0.1s, phase: 0 +[1] - Worker 103 (PID: 610) booted in 0.09s, phase: 0 +[1] - Worker 104 (PID: 615) booted in 0.09s, phase: 0 +[1] - Worker 105 (PID: 622) booted in 0.09s, phase: 0 +[1] - Worker 106 (PID: 628) booted in 0.09s, phase: 0 +[1] - Worker 107 (PID: 633) booted in 0.09s, phase: 0 +[1] - Worker 108 (PID: 639) booted in 0.09s, phase: 0 +[1] - Worker 109 (PID: 644) booted in 0.08s, phase: 0 +[1] - Worker 110 (PID: 650) booted in 0.08s, phase: 0 +[1] - Worker 111 (PID: 656) booted in 0.08s, phase: 0 +[1] - Worker 112 (PID: 662) booted in 0.08s, phase: 0 +[1] - Worker 113 (PID: 668) booted in 0.08s, phase: 0 +[1] - Worker 114 (PID: 674) booted in 0.08s, phase: 0 +[1] - Worker 115 (PID: 679) booted in 0.07s, phase: 0 [1] - Worker 116 (PID: 685) booted in 0.07s, phase: 0 -[1] - Worker 117 (PID: 691) booted in 0.07s, phase: 0 -[1] - Worker 118 (PID: 696) booted in 0.07s, phase: 0 -[1] - Worker 119 (PID: 702) booted in 0.07s, phase: 0 -[1] - Worker 120 (PID: 708) booted in 0.07s, phase: 0 -[1] - Worker 121 (PID: 714) booted in 0.06s, phase: 0 +[1] - Worker 117 (PID: 690) booted in 0.07s, phase: 0 +[1] - Worker 118 (PID: 697) booted in 0.07s, phase: 0 +[1] - Worker 119 (PID: 703) booted in 0.07s, phase: 0 +[1] - Worker 120 (PID: 709) booted in 0.07s, phase: 0 +[1] - Worker 121 (PID: 714) booted in 0.07s, phase: 0 [1] - Worker 122 (PID: 720) booted in 0.06s, phase: 0 -[1] - Worker 123 (PID: 726) booted in 0.06s, phase: 0 -[1] - Worker 124 (PID: 731) booted in 0.06s, phase: 0 -[1] - Worker 125 (PID: 738) booted in 0.06s, phase: 0 +[1] - Worker 123 (PID: 727) booted in 0.06s, phase: 0 +[1] - Worker 124 (PID: 733) booted in 0.06s, phase: 0 +[1] - Worker 125 (PID: 739) booted in 0.06s, phase: 0 [1] - Worker 126 (PID: 745) booted in 0.06s, phase: 0 -[1] - Worker 127 (PID: 751) booted in 0.05s, phase: 0 +[1] - Worker 127 (PID: 751) booted in 0.06s, phase: 0 diff --git a/site/static/logs/mixed/16384/starlette.log b/site/static/logs/mixed/16384/starlette.log index 624793bc..2aecf202 100644 --- a/site/static/logs/mixed/16384/starlette.log +++ b/site/static/logs/mixed/16384/starlette.log @@ -1,1031 +1,1031 @@ -[2026-03-26 02:14:36 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 02:14:36 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 02:14:36 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker -[2026-03-26 02:14:36 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 02:14:36 +0000] [7] [INFO] Started server process [7] -[2026-03-26 02:14:36 +0000] [7] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [7] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 02:14:36 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 02:14:36 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 02:14:36 +0000] [9] [INFO] Started server process [9] -[2026-03-26 02:14:36 +0000] [9] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [9] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [10] [INFO] Started server process [10] -[2026-03-26 02:14:36 +0000] [10] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [10] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [15] [INFO] Booting worker with pid: 15 -[2026-03-26 02:14:36 +0000] [11] [INFO] Started server process [11] -[2026-03-26 02:14:36 +0000] [11] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [11] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 02:14:36 +0000] [15] [INFO] Started server process [15] -[2026-03-26 02:14:36 +0000] [15] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [15] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [18] [INFO] Booting worker with pid: 18 -[2026-03-26 02:14:36 +0000] [16] [INFO] Started server process [16] -[2026-03-26 02:14:36 +0000] [16] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [16] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [18] [INFO] Started server process [18] -[2026-03-26 02:14:36 +0000] [18] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [18] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [21] [INFO] Booting worker with pid: 21 -[2026-03-26 02:14:36 +0000] [21] [INFO] Started server process [21] -[2026-03-26 02:14:36 +0000] [21] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [21] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 02:14:36 +0000] [23] [INFO] Started server process [23] -[2026-03-26 02:14:36 +0000] [23] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [23] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [25] [INFO] Booting worker with pid: 25 -[2026-03-26 02:14:36 +0000] [26] [INFO] Booting worker with pid: 26 -[2026-03-26 02:14:36 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 02:14:36 +0000] [25] [INFO] Started server process [25] -[2026-03-26 02:14:36 +0000] [25] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [25] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [26] [INFO] Started server process [26] -[2026-03-26 02:14:36 +0000] [26] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [26] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [30] [INFO] Booting worker with pid: 30 -[2026-03-26 02:14:36 +0000] [28] [INFO] Started server process [28] -[2026-03-26 02:14:36 +0000] [28] [INFO] Waiting for application startup. -[2026-03-26 02:14:36 +0000] [28] [INFO] Application startup complete. -[2026-03-26 02:14:36 +0000] [32] [INFO] Booting worker with pid: 32 -[2026-03-26 02:14:37 +0000] [30] [INFO] Started server process [30] -[2026-03-26 02:14:37 +0000] [30] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [30] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [34] [INFO] Booting worker with pid: 34 -[2026-03-26 02:14:37 +0000] [36] [INFO] Booting worker with pid: 36 -[2026-03-26 02:14:37 +0000] [32] [INFO] Started server process [32] -[2026-03-26 02:14:37 +0000] [32] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [32] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 02:14:37 +0000] [34] [INFO] Started server process [34] -[2026-03-26 02:14:37 +0000] [34] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [34] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [40] [INFO] Booting worker with pid: 40 -[2026-03-26 02:14:37 +0000] [36] [INFO] Started server process [36] -[2026-03-26 02:14:37 +0000] [36] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [36] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 02:14:37 +0000] [37] [INFO] Started server process [37] -[2026-03-26 02:14:37 +0000] [37] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [37] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [40] [INFO] Started server process [40] -[2026-03-26 02:14:37 +0000] [40] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [40] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [41] [INFO] Started server process [41] -[2026-03-26 02:14:37 +0000] [41] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [41] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [45] [INFO] Booting worker with pid: 45 -[2026-03-26 02:14:37 +0000] [45] [INFO] Started server process [45] -[2026-03-26 02:14:37 +0000] [45] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [45] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 02:14:37 +0000] [49] [INFO] Booting worker with pid: 49 -[2026-03-26 02:14:37 +0000] [47] [INFO] Started server process [47] -[2026-03-26 02:14:37 +0000] [47] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [47] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 02:14:37 +0000] [49] [INFO] Started server process [49] -[2026-03-26 02:14:37 +0000] [49] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [49] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [50] [INFO] Started server process [50] -[2026-03-26 02:14:37 +0000] [50] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [50] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 02:14:37 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 02:14:37 +0000] [53] [INFO] Started server process [53] -[2026-03-26 02:14:37 +0000] [53] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [53] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [57] [INFO] Booting worker with pid: 57 -[2026-03-26 02:14:37 +0000] [54] [INFO] Started server process [54] -[2026-03-26 02:14:37 +0000] [54] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [54] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [57] [INFO] Started server process [57] -[2026-03-26 02:14:37 +0000] [57] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [57] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 02:14:37 +0000] [61] [INFO] Booting worker with pid: 61 -[2026-03-26 02:14:37 +0000] [59] [INFO] Started server process [59] -[2026-03-26 02:14:37 +0000] [59] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [59] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [62] [INFO] Booting worker with pid: 62 -[2026-03-26 02:14:37 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 02:14:37 +0000] [61] [INFO] Started server process [61] -[2026-03-26 02:14:37 +0000] [61] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [61] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [66] [INFO] Booting worker with pid: 66 -[2026-03-26 02:14:37 +0000] [62] [INFO] Started server process [62] -[2026-03-26 02:14:37 +0000] [62] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [62] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [63] [INFO] Started server process [63] -[2026-03-26 02:14:37 +0000] [63] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [63] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [69] [INFO] Booting worker with pid: 69 -[2026-03-26 02:14:37 +0000] [66] [INFO] Started server process [66] -[2026-03-26 02:14:37 +0000] [66] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [66] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [69] [INFO] Started server process [69] -[2026-03-26 02:14:37 +0000] [69] [INFO] Waiting for application startup. -[2026-03-26 02:14:37 +0000] [69] [INFO] Application startup complete. -[2026-03-26 02:14:37 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 02:14:37 +0000] [72] [INFO] Booting worker with pid: 72 -[2026-03-26 02:14:38 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 02:14:38 +0000] [71] [INFO] Started server process [71] -[2026-03-26 02:14:38 +0000] [71] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [71] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [75] [INFO] Booting worker with pid: 75 -[2026-03-26 02:14:38 +0000] [72] [INFO] Started server process [72] -[2026-03-26 02:14:38 +0000] [72] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [72] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [74] [INFO] Started server process [74] -[2026-03-26 02:14:38 +0000] [74] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [74] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [75] [INFO] Started server process [75] -[2026-03-26 02:14:38 +0000] [75] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [75] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 02:14:38 +0000] [81] [INFO] Booting worker with pid: 81 -[2026-03-26 02:14:38 +0000] [79] [INFO] Started server process [79] -[2026-03-26 02:14:38 +0000] [79] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [79] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [82] [INFO] Booting worker with pid: 82 -[2026-03-26 02:14:38 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 02:14:38 +0000] [81] [INFO] Started server process [81] -[2026-03-26 02:14:38 +0000] [81] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [81] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [82] [INFO] Started server process [82] -[2026-03-26 02:14:38 +0000] [82] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [82] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [83] [INFO] Started server process [83] -[2026-03-26 02:14:38 +0000] [83] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [83] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 02:14:38 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 02:14:38 +0000] [87] [INFO] Started server process [87] -[2026-03-26 02:14:38 +0000] [87] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [87] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [88] [INFO] Started server process [88] -[2026-03-26 02:14:38 +0000] [88] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [88] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 02:14:38 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 02:14:38 +0000] [91] [INFO] Started server process [91] -[2026-03-26 02:14:38 +0000] [91] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [91] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [95] [INFO] Booting worker with pid: 95 -[2026-03-26 02:14:38 +0000] [92] [INFO] Started server process [92] -[2026-03-26 02:14:38 +0000] [92] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [92] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 02:14:38 +0000] [95] [INFO] Started server process [95] -[2026-03-26 02:14:38 +0000] [95] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [95] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 02:14:38 +0000] [97] [INFO] Started server process [97] -[2026-03-26 02:14:38 +0000] [97] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [97] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [98] [INFO] Started server process [98] -[2026-03-26 02:14:38 +0000] [98] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [98] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 02:14:38 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 02:14:38 +0000] [103] [INFO] Booting worker with pid: 103 -[2026-03-26 02:14:38 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 02:14:38 +0000] [101] [INFO] Started server process [101] -[2026-03-26 02:14:38 +0000] [101] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [101] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [102] [INFO] Started server process [102] -[2026-03-26 02:14:38 +0000] [102] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [102] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [103] [INFO] Started server process [103] -[2026-03-26 02:14:38 +0000] [103] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [103] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [104] [INFO] Started server process [104] -[2026-03-26 02:14:38 +0000] [104] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [104] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [109] [INFO] Booting worker with pid: 109 -[2026-03-26 02:14:38 +0000] [110] [INFO] Booting worker with pid: 110 -[2026-03-26 02:14:38 +0000] [109] [INFO] Started server process [109] -[2026-03-26 02:14:38 +0000] [109] [INFO] Waiting for application startup. -[2026-03-26 02:14:38 +0000] [109] [INFO] Application startup complete. -[2026-03-26 02:14:38 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 02:14:39 +0000] [113] [INFO] Booting worker with pid: 113 -[2026-03-26 02:14:39 +0000] [110] [INFO] Started server process [110] -[2026-03-26 02:14:39 +0000] [110] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [110] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 02:14:39 +0000] [112] [INFO] Started server process [112] -[2026-03-26 02:14:39 +0000] [112] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [112] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [113] [INFO] Started server process [113] -[2026-03-26 02:14:39 +0000] [113] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [113] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 02:14:39 +0000] [115] [INFO] Started server process [115] -[2026-03-26 02:14:39 +0000] [115] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [115] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 02:14:39 +0000] [118] [INFO] Started server process [118] -[2026-03-26 02:14:39 +0000] [118] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [118] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [122] [INFO] Booting worker with pid: 122 -[2026-03-26 02:14:39 +0000] [121] [INFO] Started server process [121] -[2026-03-26 02:14:39 +0000] [121] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [121] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [125] [INFO] Booting worker with pid: 125 -[2026-03-26 02:14:39 +0000] [122] [INFO] Started server process [122] -[2026-03-26 02:14:39 +0000] [122] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [122] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [126] [INFO] Booting worker with pid: 126 -[2026-03-26 02:14:39 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 02:14:39 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 02:14:39 +0000] [125] [INFO] Started server process [125] -[2026-03-26 02:14:39 +0000] [125] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [125] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [126] [INFO] Started server process [126] -[2026-03-26 02:14:39 +0000] [126] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [126] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [128] [INFO] Started server process [128] -[2026-03-26 02:14:39 +0000] [128] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [128] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [129] [INFO] Started server process [129] -[2026-03-26 02:14:39 +0000] [129] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [129] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 02:14:39 +0000] [134] [INFO] Booting worker with pid: 134 -[2026-03-26 02:14:39 +0000] [133] [INFO] Started server process [133] -[2026-03-26 02:14:39 +0000] [133] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [133] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [137] [INFO] Booting worker with pid: 137 -[2026-03-26 02:14:39 +0000] [134] [INFO] Started server process [134] -[2026-03-26 02:14:39 +0000] [134] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [134] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 02:14:39 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 02:14:39 +0000] [137] [INFO] Started server process [137] -[2026-03-26 02:14:39 +0000] [137] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [137] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [138] [INFO] Started server process [138] -[2026-03-26 02:14:39 +0000] [138] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [138] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 02:14:39 +0000] [139] [INFO] Started server process [139] -[2026-03-26 02:14:39 +0000] [139] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [139] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 02:14:39 +0000] [145] [INFO] Booting worker with pid: 145 -[2026-03-26 02:14:39 +0000] [142] [INFO] Started server process [142] -[2026-03-26 02:14:39 +0000] [142] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [142] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [144] [INFO] Started server process [144] -[2026-03-26 02:14:39 +0000] [144] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [144] [INFO] Application startup complete. -[2026-03-26 02:14:39 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 02:14:39 +0000] [145] [INFO] Started server process [145] -[2026-03-26 02:14:39 +0000] [145] [INFO] Waiting for application startup. -[2026-03-26 02:14:39 +0000] [145] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [151] [INFO] Booting worker with pid: 151 -[2026-03-26 02:14:40 +0000] [148] [INFO] Started server process [148] -[2026-03-26 02:14:40 +0000] [148] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [148] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 02:14:40 +0000] [154] [INFO] Booting worker with pid: 154 -[2026-03-26 02:14:40 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 02:14:40 +0000] [151] [INFO] Started server process [151] -[2026-03-26 02:14:40 +0000] [151] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [151] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [152] [INFO] Started server process [152] -[2026-03-26 02:14:40 +0000] [152] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [152] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [157] [INFO] Booting worker with pid: 157 -[2026-03-26 02:14:40 +0000] [159] [INFO] Booting worker with pid: 159 -[2026-03-26 02:14:40 +0000] [154] [INFO] Started server process [154] -[2026-03-26 02:14:40 +0000] [154] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [154] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [161] [INFO] Booting worker with pid: 161 -[2026-03-26 02:14:40 +0000] [155] [INFO] Started server process [155] -[2026-03-26 02:14:40 +0000] [155] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [155] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [157] [INFO] Started server process [157] -[2026-03-26 02:14:40 +0000] [157] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [157] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 02:14:40 +0000] [159] [INFO] Started server process [159] -[2026-03-26 02:14:40 +0000] [159] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [159] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [161] [INFO] Started server process [161] -[2026-03-26 02:14:40 +0000] [161] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [161] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [166] [INFO] Booting worker with pid: 166 -[2026-03-26 02:14:40 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 02:14:40 +0000] [168] [INFO] Booting worker with pid: 168 -[2026-03-26 02:14:40 +0000] [163] [INFO] Started server process [163] -[2026-03-26 02:14:40 +0000] [163] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [163] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [167] [INFO] Started server process [167] -[2026-03-26 02:14:40 +0000] [167] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [167] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [166] [INFO] Started server process [166] -[2026-03-26 02:14:40 +0000] [166] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [166] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 02:14:40 +0000] [168] [INFO] Started server process [168] -[2026-03-26 02:14:40 +0000] [168] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [168] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 02:14:40 +0000] [172] [INFO] Started server process [172] -[2026-03-26 02:14:40 +0000] [172] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [172] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 02:14:40 +0000] [174] [INFO] Started server process [174] -[2026-03-26 02:14:40 +0000] [174] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [174] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 02:14:40 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 02:14:40 +0000] [180] [INFO] Booting worker with pid: 180 -[2026-03-26 02:14:40 +0000] [176] [INFO] Started server process [176] -[2026-03-26 02:14:40 +0000] [176] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [176] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [182] [INFO] Booting worker with pid: 182 -[2026-03-26 02:14:40 +0000] [178] [INFO] Started server process [178] -[2026-03-26 02:14:40 +0000] [178] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [178] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [186] [INFO] Booting worker with pid: 186 -[2026-03-26 02:14:40 +0000] [180] [INFO] Started server process [180] -[2026-03-26 02:14:40 +0000] [180] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [180] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [179] [INFO] Started server process [179] -[2026-03-26 02:14:40 +0000] [179] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [179] [INFO] Application startup complete. -[2026-03-26 02:14:40 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 02:14:40 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 02:14:40 +0000] [182] [INFO] Started server process [182] -[2026-03-26 02:14:40 +0000] [182] [INFO] Waiting for application startup. -[2026-03-26 02:14:40 +0000] [182] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [186] [INFO] Started server process [186] -[2026-03-26 02:14:41 +0000] [186] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [186] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [192] [INFO] Booting worker with pid: 192 -[2026-03-26 02:14:41 +0000] [187] [INFO] Started server process [187] -[2026-03-26 02:14:41 +0000] [187] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [187] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [189] [INFO] Started server process [189] -[2026-03-26 02:14:41 +0000] [189] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [189] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 02:14:41 +0000] [192] [INFO] Started server process [192] -[2026-03-26 02:14:41 +0000] [192] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [192] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 02:14:41 +0000] [197] [INFO] Booting worker with pid: 197 -[2026-03-26 02:14:41 +0000] [194] [INFO] Started server process [194] -[2026-03-26 02:14:41 +0000] [194] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [194] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [196] [INFO] Started server process [196] -[2026-03-26 02:14:41 +0000] [196] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [196] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [201] [INFO] Booting worker with pid: 201 -[2026-03-26 02:14:41 +0000] [202] [INFO] Booting worker with pid: 202 -[2026-03-26 02:14:41 +0000] [197] [INFO] Started server process [197] -[2026-03-26 02:14:41 +0000] [197] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [197] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [203] [INFO] Booting worker with pid: 203 -[2026-03-26 02:14:41 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 02:14:41 +0000] [201] [INFO] Started server process [201] -[2026-03-26 02:14:41 +0000] [201] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [201] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [202] [INFO] Started server process [202] -[2026-03-26 02:14:41 +0000] [202] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [202] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 02:14:41 +0000] [203] [INFO] Started server process [203] -[2026-03-26 02:14:41 +0000] [203] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [203] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [210] [INFO] Booting worker with pid: 210 -[2026-03-26 02:14:41 +0000] [205] [INFO] Started server process [205] -[2026-03-26 02:14:41 +0000] [205] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [205] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 02:14:41 +0000] [208] [INFO] Started server process [208] -[2026-03-26 02:14:41 +0000] [208] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [208] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [210] [INFO] Started server process [210] -[2026-03-26 02:14:41 +0000] [210] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [210] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 02:14:41 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 02:14:41 +0000] [212] [INFO] Started server process [212] -[2026-03-26 02:14:41 +0000] [212] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [212] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [214] [INFO] Started server process [214] -[2026-03-26 02:14:41 +0000] [214] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [214] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [218] [INFO] Booting worker with pid: 218 -[2026-03-26 02:14:41 +0000] [216] [INFO] Started server process [216] -[2026-03-26 02:14:41 +0000] [216] [INFO] Waiting for application startup. -[2026-03-26 02:14:41 +0000] [216] [INFO] Application startup complete. -[2026-03-26 02:14:41 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 02:14:41 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 02:14:42 +0000] [218] [INFO] Started server process [218] -[2026-03-26 02:14:42 +0000] [218] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [218] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [223] [INFO] Booting worker with pid: 223 -[2026-03-26 02:14:42 +0000] [220] [INFO] Started server process [220] -[2026-03-26 02:14:42 +0000] [220] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [220] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [221] [INFO] Started server process [221] -[2026-03-26 02:14:42 +0000] [221] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [221] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 02:14:42 +0000] [223] [INFO] Started server process [223] -[2026-03-26 02:14:42 +0000] [223] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [223] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 02:14:42 +0000] [230] [INFO] Booting worker with pid: 230 -[2026-03-26 02:14:42 +0000] [226] [INFO] Started server process [226] -[2026-03-26 02:14:42 +0000] [226] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [226] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [232] [INFO] Booting worker with pid: 232 -[2026-03-26 02:14:42 +0000] [228] [INFO] Started server process [228] -[2026-03-26 02:14:42 +0000] [228] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [228] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [230] [INFO] Started server process [230] -[2026-03-26 02:14:42 +0000] [230] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [230] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 02:14:42 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 02:14:42 +0000] [232] [INFO] Started server process [232] -[2026-03-26 02:14:42 +0000] [232] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [232] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [238] [INFO] Booting worker with pid: 238 -[2026-03-26 02:14:42 +0000] [234] [INFO] Started server process [234] -[2026-03-26 02:14:42 +0000] [234] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [234] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 02:14:42 +0000] [235] [INFO] Started server process [235] -[2026-03-26 02:14:42 +0000] [235] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [235] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [241] [INFO] Booting worker with pid: 241 -[2026-03-26 02:14:42 +0000] [238] [INFO] Started server process [238] -[2026-03-26 02:14:42 +0000] [238] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [238] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 02:14:42 +0000] [240] [INFO] Started server process [240] -[2026-03-26 02:14:42 +0000] [240] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [240] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [245] [INFO] Booting worker with pid: 245 -[2026-03-26 02:14:42 +0000] [241] [INFO] Started server process [241] -[2026-03-26 02:14:42 +0000] [241] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [241] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [247] [INFO] Booting worker with pid: 247 -[2026-03-26 02:14:42 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 02:14:42 +0000] [244] [INFO] Started server process [244] -[2026-03-26 02:14:42 +0000] [244] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [244] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [245] [INFO] Started server process [245] -[2026-03-26 02:14:42 +0000] [245] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [245] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [251] [INFO] Booting worker with pid: 251 -[2026-03-26 02:14:42 +0000] [247] [INFO] Started server process [247] -[2026-03-26 02:14:42 +0000] [247] [INFO] Waiting for application startup. -[2026-03-26 02:14:42 +0000] [247] [INFO] Application startup complete. -[2026-03-26 02:14:42 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 02:14:42 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 02:14:43 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 02:14:43 +0000] [249] [INFO] Started server process [249] -[2026-03-26 02:14:43 +0000] [249] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [249] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [251] [INFO] Started server process [251] -[2026-03-26 02:14:43 +0000] [251] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [251] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [259] [INFO] Booting worker with pid: 259 -[2026-03-26 02:14:43 +0000] [253] [INFO] Started server process [253] -[2026-03-26 02:14:43 +0000] [253] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [253] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 02:14:43 +0000] [256] [INFO] Started server process [256] -[2026-03-26 02:14:43 +0000] [256] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [256] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [263] [INFO] Booting worker with pid: 263 -[2026-03-26 02:14:43 +0000] [259] [INFO] Started server process [259] -[2026-03-26 02:14:43 +0000] [259] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [259] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [264] [INFO] Booting worker with pid: 264 -[2026-03-26 02:14:43 +0000] [260] [INFO] Started server process [260] -[2026-03-26 02:14:43 +0000] [260] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [260] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [267] [INFO] Booting worker with pid: 267 -[2026-03-26 02:14:43 +0000] [254] [INFO] Started server process [254] -[2026-03-26 02:14:43 +0000] [254] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [254] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [268] [INFO] Booting worker with pid: 268 -[2026-03-26 02:14:43 +0000] [269] [INFO] Booting worker with pid: 269 -[2026-03-26 02:14:43 +0000] [270] [INFO] Booting worker with pid: 270 -[2026-03-26 02:14:43 +0000] [272] [INFO] Booting worker with pid: 272 -[2026-03-26 02:14:43 +0000] [263] [INFO] Started server process [263] -[2026-03-26 02:14:43 +0000] [263] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [263] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [273] [INFO] Booting worker with pid: 273 -[2026-03-26 02:14:43 +0000] [268] [INFO] Started server process [268] -[2026-03-26 02:14:43 +0000] [268] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [268] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [277] [INFO] Booting worker with pid: 277 -[2026-03-26 02:14:43 +0000] [270] [INFO] Started server process [270] -[2026-03-26 02:14:43 +0000] [270] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [270] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [264] [INFO] Started server process [264] -[2026-03-26 02:14:43 +0000] [264] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [264] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [267] [INFO] Started server process [267] -[2026-03-26 02:14:43 +0000] [267] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [267] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [280] [INFO] Booting worker with pid: 280 -[2026-03-26 02:14:43 +0000] [272] [INFO] Started server process [272] -[2026-03-26 02:14:43 +0000] [272] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [272] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [273] [INFO] Started server process [273] -[2026-03-26 02:14:43 +0000] [273] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [273] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [269] [INFO] Started server process [269] -[2026-03-26 02:14:43 +0000] [269] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [269] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [283] [INFO] Booting worker with pid: 283 -[2026-03-26 02:14:43 +0000] [284] [INFO] Booting worker with pid: 284 -[2026-03-26 02:14:43 +0000] [283] [INFO] Started server process [283] -[2026-03-26 02:14:43 +0000] [283] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [283] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [287] [INFO] Booting worker with pid: 287 -[2026-03-26 02:14:43 +0000] [288] [INFO] Booting worker with pid: 288 -[2026-03-26 02:14:43 +0000] [277] [INFO] Started server process [277] -[2026-03-26 02:14:43 +0000] [277] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [277] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [280] [INFO] Started server process [280] -[2026-03-26 02:14:43 +0000] [280] [INFO] Waiting for application startup. -[2026-03-26 02:14:43 +0000] [280] [INFO] Application startup complete. -[2026-03-26 02:14:43 +0000] [290] [INFO] Booting worker with pid: 290 -[2026-03-26 02:14:43 +0000] [292] [INFO] Booting worker with pid: 292 -[2026-03-26 02:14:43 +0000] [293] [INFO] Booting worker with pid: 293 -[2026-03-26 02:14:44 +0000] [284] [INFO] Started server process [284] -[2026-03-26 02:14:44 +0000] [284] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [284] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [294] [INFO] Booting worker with pid: 294 -[2026-03-26 02:14:44 +0000] [287] [INFO] Started server process [287] -[2026-03-26 02:14:44 +0000] [287] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [287] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [296] [INFO] Booting worker with pid: 296 -[2026-03-26 02:14:44 +0000] [298] [INFO] Booting worker with pid: 298 -[2026-03-26 02:14:44 +0000] [299] [INFO] Booting worker with pid: 299 -[2026-03-26 02:14:44 +0000] [288] [INFO] Started server process [288] -[2026-03-26 02:14:44 +0000] [288] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [288] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [293] [INFO] Started server process [293] -[2026-03-26 02:14:44 +0000] [293] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [293] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [302] [INFO] Booting worker with pid: 302 -[2026-03-26 02:14:44 +0000] [304] [INFO] Booting worker with pid: 304 -[2026-03-26 02:14:44 +0000] [292] [INFO] Started server process [292] -[2026-03-26 02:14:44 +0000] [292] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [292] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [290] [INFO] Started server process [290] -[2026-03-26 02:14:44 +0000] [290] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [290] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [296] [INFO] Started server process [296] -[2026-03-26 02:14:44 +0000] [296] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [296] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [294] [INFO] Started server process [294] -[2026-03-26 02:14:44 +0000] [294] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [294] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [307] [INFO] Booting worker with pid: 307 -[2026-03-26 02:14:44 +0000] [299] [INFO] Started server process [299] -[2026-03-26 02:14:44 +0000] [299] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [299] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [309] [INFO] Booting worker with pid: 309 -[2026-03-26 02:14:44 +0000] [311] [INFO] Booting worker with pid: 311 -[2026-03-26 02:14:44 +0000] [298] [INFO] Started server process [298] -[2026-03-26 02:14:44 +0000] [298] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [298] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [302] [INFO] Started server process [302] -[2026-03-26 02:14:44 +0000] [302] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [302] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [313] [INFO] Booting worker with pid: 313 -[2026-03-26 02:14:44 +0000] [314] [INFO] Booting worker with pid: 314 -[2026-03-26 02:14:44 +0000] [317] [INFO] Booting worker with pid: 317 -[2026-03-26 02:14:44 +0000] [311] [INFO] Started server process [311] -[2026-03-26 02:14:44 +0000] [311] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [311] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [304] [INFO] Started server process [304] -[2026-03-26 02:14:44 +0000] [304] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [304] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [320] [INFO] Booting worker with pid: 320 -[2026-03-26 02:14:44 +0000] [309] [INFO] Started server process [309] -[2026-03-26 02:14:44 +0000] [309] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [309] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [313] [INFO] Started server process [313] -[2026-03-26 02:14:44 +0000] [313] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [313] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [322] [INFO] Booting worker with pid: 322 -[2026-03-26 02:14:44 +0000] [307] [INFO] Started server process [307] -[2026-03-26 02:14:44 +0000] [307] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [307] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [314] [INFO] Started server process [314] -[2026-03-26 02:14:44 +0000] [314] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [314] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [325] [INFO] Booting worker with pid: 325 -[2026-03-26 02:14:44 +0000] [317] [INFO] Started server process [317] -[2026-03-26 02:14:44 +0000] [317] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [317] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [322] [INFO] Started server process [322] -[2026-03-26 02:14:44 +0000] [322] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [322] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [320] [INFO] Started server process [320] -[2026-03-26 02:14:44 +0000] [320] [INFO] Waiting for application startup. -[2026-03-26 02:14:44 +0000] [320] [INFO] Application startup complete. -[2026-03-26 02:14:44 +0000] [328] [INFO] Booting worker with pid: 328 -[2026-03-26 02:14:44 +0000] [329] [INFO] Booting worker with pid: 329 -[2026-03-26 02:14:44 +0000] [330] [INFO] Booting worker with pid: 330 -[2026-03-26 02:14:45 +0000] [331] [INFO] Booting worker with pid: 331 -[2026-03-26 02:14:45 +0000] [333] [INFO] Booting worker with pid: 333 -[2026-03-26 02:14:45 +0000] [325] [INFO] Started server process [325] -[2026-03-26 02:14:45 +0000] [325] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [325] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [330] [INFO] Started server process [330] -[2026-03-26 02:14:45 +0000] [330] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [330] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [333] [INFO] Started server process [333] -[2026-03-26 02:14:45 +0000] [333] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [333] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [337] [INFO] Booting worker with pid: 337 -[2026-03-26 02:14:45 +0000] [328] [INFO] Started server process [328] -[2026-03-26 02:14:45 +0000] [328] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [328] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [338] [INFO] Booting worker with pid: 338 -[2026-03-26 02:14:45 +0000] [340] [INFO] Booting worker with pid: 340 -[2026-03-26 02:14:45 +0000] [331] [INFO] Started server process [331] -[2026-03-26 02:14:45 +0000] [331] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [331] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [341] [INFO] Booting worker with pid: 341 -[2026-03-26 02:14:45 +0000] [342] [INFO] Booting worker with pid: 342 -[2026-03-26 02:14:45 +0000] [337] [INFO] Started server process [337] -[2026-03-26 02:14:45 +0000] [337] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [337] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [345] [INFO] Booting worker with pid: 345 -[2026-03-26 02:14:45 +0000] [338] [INFO] Started server process [338] -[2026-03-26 02:14:45 +0000] [338] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [338] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [329] [INFO] Started server process [329] -[2026-03-26 02:14:45 +0000] [329] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [329] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [347] [INFO] Booting worker with pid: 347 -[2026-03-26 02:14:45 +0000] [348] [INFO] Booting worker with pid: 348 -[2026-03-26 02:14:45 +0000] [347] [INFO] Started server process [347] -[2026-03-26 02:14:45 +0000] [347] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [347] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [342] [INFO] Started server process [342] -[2026-03-26 02:14:45 +0000] [342] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [342] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [340] [INFO] Started server process [340] -[2026-03-26 02:14:45 +0000] [340] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [340] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [352] [INFO] Booting worker with pid: 352 -[2026-03-26 02:14:45 +0000] [345] [INFO] Started server process [345] -[2026-03-26 02:14:45 +0000] [345] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [345] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [355] [INFO] Booting worker with pid: 355 -[2026-03-26 02:14:45 +0000] [341] [INFO] Started server process [341] -[2026-03-26 02:14:45 +0000] [341] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [341] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [356] [INFO] Booting worker with pid: 356 -[2026-03-26 02:14:45 +0000] [355] [INFO] Started server process [355] -[2026-03-26 02:14:45 +0000] [355] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [355] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [360] [INFO] Booting worker with pid: 360 -[2026-03-26 02:14:45 +0000] [352] [INFO] Started server process [352] -[2026-03-26 02:14:45 +0000] [352] [INFO] Waiting for application startup. -[2026-03-26 02:14:45 +0000] [352] [INFO] Application startup complete. -[2026-03-26 02:14:45 +0000] [361] [INFO] Booting worker with pid: 361 -[2026-03-26 02:14:46 +0000] [348] [INFO] Started server process [348] -[2026-03-26 02:14:46 +0000] [348] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [348] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [362] [INFO] Booting worker with pid: 362 -[2026-03-26 02:14:46 +0000] [361] [INFO] Started server process [361] -[2026-03-26 02:14:46 +0000] [361] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [361] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [365] [INFO] Booting worker with pid: 365 -[2026-03-26 02:14:46 +0000] [360] [INFO] Started server process [360] -[2026-03-26 02:14:46 +0000] [360] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [360] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [366] [INFO] Booting worker with pid: 366 -[2026-03-26 02:14:46 +0000] [367] [INFO] Booting worker with pid: 367 -[2026-03-26 02:14:46 +0000] [356] [INFO] Started server process [356] -[2026-03-26 02:14:46 +0000] [356] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [356] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [371] [INFO] Booting worker with pid: 371 -[2026-03-26 02:14:46 +0000] [365] [INFO] Started server process [365] -[2026-03-26 02:14:46 +0000] [365] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [365] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [372] [INFO] Booting worker with pid: 372 -[2026-03-26 02:14:46 +0000] [362] [INFO] Started server process [362] -[2026-03-26 02:14:46 +0000] [362] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [362] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [366] [INFO] Started server process [366] -[2026-03-26 02:14:46 +0000] [366] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [366] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [374] [INFO] Booting worker with pid: 374 -[2026-03-26 02:14:46 +0000] [375] [INFO] Booting worker with pid: 375 -[2026-03-26 02:14:46 +0000] [377] [INFO] Booting worker with pid: 377 -[2026-03-26 02:14:46 +0000] [380] [INFO] Booting worker with pid: 380 -[2026-03-26 02:14:46 +0000] [374] [INFO] Started server process [374] -[2026-03-26 02:14:46 +0000] [374] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [374] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [367] [INFO] Started server process [367] -[2026-03-26 02:14:46 +0000] [367] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [367] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [371] [INFO] Started server process [371] -[2026-03-26 02:14:46 +0000] [371] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [371] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [382] [INFO] Booting worker with pid: 382 -[2026-03-26 02:14:46 +0000] [383] [INFO] Booting worker with pid: 383 -[2026-03-26 02:14:46 +0000] [380] [INFO] Started server process [380] -[2026-03-26 02:14:46 +0000] [380] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [380] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [372] [INFO] Started server process [372] -[2026-03-26 02:14:46 +0000] [372] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [372] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [377] [INFO] Started server process [377] -[2026-03-26 02:14:46 +0000] [377] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [377] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [386] [INFO] Booting worker with pid: 386 -[2026-03-26 02:14:46 +0000] [389] [INFO] Booting worker with pid: 389 -[2026-03-26 02:14:46 +0000] [382] [INFO] Started server process [382] -[2026-03-26 02:14:46 +0000] [382] [INFO] Waiting for application startup. -[2026-03-26 02:14:46 +0000] [382] [INFO] Application startup complete. -[2026-03-26 02:14:46 +0000] [390] [INFO] Booting worker with pid: 390 -[2026-03-26 02:14:47 +0000] [375] [INFO] Started server process [375] -[2026-03-26 02:14:47 +0000] [375] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [375] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [392] [INFO] Booting worker with pid: 392 -[2026-03-26 02:14:47 +0000] [383] [INFO] Started server process [383] -[2026-03-26 02:14:47 +0000] [383] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [383] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [390] [INFO] Started server process [390] -[2026-03-26 02:14:47 +0000] [390] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [390] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [395] [INFO] Booting worker with pid: 395 -[2026-03-26 02:14:47 +0000] [396] [INFO] Booting worker with pid: 396 -[2026-03-26 02:14:47 +0000] [397] [INFO] Booting worker with pid: 397 -[2026-03-26 02:14:47 +0000] [389] [INFO] Started server process [389] -[2026-03-26 02:14:47 +0000] [389] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [389] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [399] [INFO] Booting worker with pid: 399 -[2026-03-26 02:14:47 +0000] [400] [INFO] Booting worker with pid: 400 -[2026-03-26 02:14:47 +0000] [386] [INFO] Started server process [386] -[2026-03-26 02:14:47 +0000] [386] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [386] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [401] [INFO] Booting worker with pid: 401 -[2026-03-26 02:14:47 +0000] [402] [INFO] Booting worker with pid: 402 -[2026-03-26 02:14:47 +0000] [396] [INFO] Started server process [396] -[2026-03-26 02:14:47 +0000] [396] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [396] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [405] [INFO] Booting worker with pid: 405 -[2026-03-26 02:14:47 +0000] [400] [INFO] Started server process [400] -[2026-03-26 02:14:47 +0000] [400] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [400] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [407] [INFO] Booting worker with pid: 407 -[2026-03-26 02:14:47 +0000] [397] [INFO] Started server process [397] -[2026-03-26 02:14:47 +0000] [397] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [397] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [401] [INFO] Started server process [401] -[2026-03-26 02:14:47 +0000] [401] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [401] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [410] [INFO] Booting worker with pid: 410 -[2026-03-26 02:14:47 +0000] [412] [INFO] Booting worker with pid: 412 -[2026-03-26 02:14:47 +0000] [392] [INFO] Started server process [392] -[2026-03-26 02:14:47 +0000] [392] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [392] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [395] [INFO] Started server process [395] -[2026-03-26 02:14:47 +0000] [395] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [395] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [399] [INFO] Started server process [399] -[2026-03-26 02:14:47 +0000] [399] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [399] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [415] [INFO] Booting worker with pid: 415 -[2026-03-26 02:14:47 +0000] [405] [INFO] Started server process [405] -[2026-03-26 02:14:47 +0000] [405] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [405] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [407] [INFO] Started server process [407] -[2026-03-26 02:14:47 +0000] [407] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [407] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [417] [INFO] Booting worker with pid: 417 -[2026-03-26 02:14:47 +0000] [419] [INFO] Booting worker with pid: 419 -[2026-03-26 02:14:47 +0000] [415] [INFO] Started server process [415] -[2026-03-26 02:14:47 +0000] [415] [INFO] Waiting for application startup. -[2026-03-26 02:14:47 +0000] [415] [INFO] Application startup complete. -[2026-03-26 02:14:47 +0000] [420] [INFO] Booting worker with pid: 420 -[2026-03-26 02:14:48 +0000] [412] [INFO] Started server process [412] -[2026-03-26 02:14:48 +0000] [412] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [412] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [423] [INFO] Booting worker with pid: 423 -[2026-03-26 02:14:48 +0000] [424] [INFO] Booting worker with pid: 424 -[2026-03-26 02:14:48 +0000] [419] [INFO] Started server process [419] -[2026-03-26 02:14:48 +0000] [419] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [419] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [402] [INFO] Started server process [402] -[2026-03-26 02:14:48 +0000] [402] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [402] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [426] [INFO] Booting worker with pid: 426 -[2026-03-26 02:14:48 +0000] [428] [INFO] Booting worker with pid: 428 -[2026-03-26 02:14:48 +0000] [417] [INFO] Started server process [417] -[2026-03-26 02:14:48 +0000] [417] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [417] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [429] [INFO] Booting worker with pid: 429 -[2026-03-26 02:14:48 +0000] [426] [INFO] Started server process [426] -[2026-03-26 02:14:48 +0000] [426] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [426] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [432] [INFO] Booting worker with pid: 432 -[2026-03-26 02:14:48 +0000] [428] [INFO] Started server process [428] -[2026-03-26 02:14:48 +0000] [428] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [428] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [433] [INFO] Booting worker with pid: 433 -[2026-03-26 02:14:48 +0000] [437] [INFO] Booting worker with pid: 437 -[2026-03-26 02:14:48 +0000] [424] [INFO] Started server process [424] -[2026-03-26 02:14:48 +0000] [423] [INFO] Started server process [423] -[2026-03-26 02:14:48 +0000] [424] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [424] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [423] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [423] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [440] [INFO] Booting worker with pid: 440 -[2026-03-26 02:14:48 +0000] [433] [INFO] Started server process [433] -[2026-03-26 02:14:48 +0000] [433] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [433] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [441] [INFO] Booting worker with pid: 441 -[2026-03-26 02:14:48 +0000] [442] [INFO] Booting worker with pid: 442 -[2026-03-26 02:14:48 +0000] [410] [INFO] Started server process [410] -[2026-03-26 02:14:48 +0000] [410] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [410] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [444] [INFO] Booting worker with pid: 444 -[2026-03-26 02:14:48 +0000] [432] [INFO] Started server process [432] -[2026-03-26 02:14:48 +0000] [432] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [432] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [420] [INFO] Started server process [420] -[2026-03-26 02:14:48 +0000] [420] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [420] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [429] [INFO] Started server process [429] -[2026-03-26 02:14:48 +0000] [429] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [429] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [446] [INFO] Booting worker with pid: 446 -[2026-03-26 02:14:48 +0000] [437] [INFO] Started server process [437] -[2026-03-26 02:14:48 +0000] [437] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [437] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [448] [INFO] Booting worker with pid: 448 -[2026-03-26 02:14:48 +0000] [440] [INFO] Started server process [440] -[2026-03-26 02:14:48 +0000] [440] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [440] [INFO] Application startup complete. -[2026-03-26 02:14:48 +0000] [441] [INFO] Started server process [441] -[2026-03-26 02:14:48 +0000] [441] [INFO] Waiting for application startup. -[2026-03-26 02:14:48 +0000] [441] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [453] [INFO] Booting worker with pid: 453 -[2026-03-26 02:14:49 +0000] [444] [INFO] Started server process [444] -[2026-03-26 02:14:49 +0000] [444] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [444] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [448] [INFO] Started server process [448] -[2026-03-26 02:14:49 +0000] [448] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [448] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [442] [INFO] Started server process [442] -[2026-03-26 02:14:49 +0000] [442] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [442] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [455] [INFO] Booting worker with pid: 455 -[2026-03-26 02:14:49 +0000] [456] [INFO] Booting worker with pid: 456 -[2026-03-26 02:14:49 +0000] [457] [INFO] Booting worker with pid: 457 -[2026-03-26 02:14:49 +0000] [453] [INFO] Started server process [453] -[2026-03-26 02:14:49 +0000] [453] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [453] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [459] [INFO] Booting worker with pid: 459 -[2026-03-26 02:14:49 +0000] [461] [INFO] Booting worker with pid: 461 -[2026-03-26 02:14:49 +0000] [462] [INFO] Booting worker with pid: 462 -[2026-03-26 02:14:49 +0000] [463] [INFO] Booting worker with pid: 463 -[2026-03-26 02:14:49 +0000] [446] [INFO] Started server process [446] -[2026-03-26 02:14:49 +0000] [446] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [446] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [465] [INFO] Booting worker with pid: 465 -[2026-03-26 02:14:49 +0000] [459] [INFO] Started server process [459] -[2026-03-26 02:14:49 +0000] [459] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [459] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [457] [INFO] Started server process [457] -[2026-03-26 02:14:49 +0000] [457] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [457] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [468] [INFO] Booting worker with pid: 468 -[2026-03-26 02:14:49 +0000] [469] [INFO] Booting worker with pid: 469 -[2026-03-26 02:14:49 +0000] [470] [INFO] Booting worker with pid: 470 -[2026-03-26 02:14:49 +0000] [455] [INFO] Started server process [455] -[2026-03-26 02:14:49 +0000] [455] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [455] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [462] [INFO] Started server process [462] -[2026-03-26 02:14:49 +0000] [462] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [462] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [473] [INFO] Booting worker with pid: 473 -[2026-03-26 02:14:49 +0000] [465] [INFO] Started server process [465] -[2026-03-26 02:14:49 +0000] [465] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [465] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [463] [INFO] Started server process [463] -[2026-03-26 02:14:49 +0000] [463] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [463] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [476] [INFO] Booting worker with pid: 476 -[2026-03-26 02:14:49 +0000] [470] [INFO] Started server process [470] -[2026-03-26 02:14:49 +0000] [470] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [470] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [461] [INFO] Started server process [461] -[2026-03-26 02:14:49 +0000] [461] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [461] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [480] [INFO] Booting worker with pid: 480 -[2026-03-26 02:14:49 +0000] [473] [INFO] Started server process [473] -[2026-03-26 02:14:49 +0000] [473] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [473] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [469] [INFO] Started server process [469] -[2026-03-26 02:14:49 +0000] [469] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [469] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [482] [INFO] Booting worker with pid: 482 -[2026-03-26 02:14:49 +0000] [456] [INFO] Started server process [456] -[2026-03-26 02:14:49 +0000] [456] [INFO] Waiting for application startup. -[2026-03-26 02:14:49 +0000] [456] [INFO] Application startup complete. -[2026-03-26 02:14:49 +0000] [485] [INFO] Booting worker with pid: 485 -[2026-03-26 02:14:50 +0000] [480] [INFO] Started server process [480] -[2026-03-26 02:14:50 +0000] [480] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [480] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [487] [INFO] Booting worker with pid: 487 -[2026-03-26 02:14:50 +0000] [468] [INFO] Started server process [468] -[2026-03-26 02:14:50 +0000] [468] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [468] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [488] [INFO] Booting worker with pid: 488 -[2026-03-26 02:14:50 +0000] [476] [INFO] Started server process [476] -[2026-03-26 02:14:50 +0000] [476] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [476] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [490] [INFO] Booting worker with pid: 490 -[2026-03-26 02:14:50 +0000] [482] [INFO] Started server process [482] -[2026-03-26 02:14:50 +0000] [482] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [482] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [488] [INFO] Started server process [488] -[2026-03-26 02:14:50 +0000] [488] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [488] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [492] [INFO] Booting worker with pid: 492 -[2026-03-26 02:14:50 +0000] [494] [INFO] Booting worker with pid: 494 -[2026-03-26 02:14:50 +0000] [487] [INFO] Started server process [487] -[2026-03-26 02:14:50 +0000] [487] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [487] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [495] [INFO] Booting worker with pid: 495 -[2026-03-26 02:14:50 +0000] [498] [INFO] Booting worker with pid: 498 -[2026-03-26 02:14:50 +0000] [494] [INFO] Started server process [494] -[2026-03-26 02:14:50 +0000] [494] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [494] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [490] [INFO] Started server process [490] -[2026-03-26 02:14:50 +0000] [490] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [490] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [501] [INFO] Booting worker with pid: 501 -[2026-03-26 02:14:50 +0000] [492] [INFO] Started server process [492] -[2026-03-26 02:14:50 +0000] [492] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [492] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [485] [INFO] Started server process [485] -[2026-03-26 02:14:50 +0000] [485] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [502] [INFO] Booting worker with pid: 502 -[2026-03-26 02:14:50 +0000] [485] [INFO] Application startup complete. -[2026-03-26 02:14:50 +0000] [504] [INFO] Booting worker with pid: 504 -[2026-03-26 02:14:50 +0000] [505] [INFO] Booting worker with pid: 505 -[2026-03-26 02:14:50 +0000] [495] [INFO] Started server process [495] -[2026-03-26 02:14:50 +0000] [495] [INFO] Waiting for application startup. -[2026-03-26 02:14:50 +0000] [495] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [506] [INFO] Booting worker with pid: 506 -[2026-03-26 02:14:51 +0000] [502] [INFO] Started server process [502] -[2026-03-26 02:14:51 +0000] [502] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [502] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [508] [INFO] Booting worker with pid: 508 -[2026-03-26 02:14:51 +0000] [501] [INFO] Started server process [501] -[2026-03-26 02:14:51 +0000] [501] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [501] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [510] [INFO] Booting worker with pid: 510 -[2026-03-26 02:14:51 +0000] [511] [INFO] Booting worker with pid: 511 -[2026-03-26 02:14:51 +0000] [506] [INFO] Started server process [506] -[2026-03-26 02:14:51 +0000] [506] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [506] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [504] [INFO] Started server process [504] -[2026-03-26 02:14:51 +0000] [504] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [504] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [510] [INFO] Started server process [510] -[2026-03-26 02:14:51 +0000] [510] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [510] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [505] [INFO] Started server process [505] -[2026-03-26 02:14:51 +0000] [505] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [505] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [511] [INFO] Started server process [511] -[2026-03-26 02:14:51 +0000] [511] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [511] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [508] [INFO] Started server process [508] -[2026-03-26 02:14:51 +0000] [508] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [508] [INFO] Application startup complete. -[2026-03-26 02:14:51 +0000] [498] [INFO] Started server process [498] -[2026-03-26 02:14:51 +0000] [498] [INFO] Waiting for application startup. -[2026-03-26 02:14:51 +0000] [498] [INFO] Application startup complete. -[2026-03-26 02:14:52 +0000] [176] [ERROR] Exception in ASGI application +[2026-03-29 03:29:28 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 03:29:28 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 03:29:28 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker +[2026-03-29 03:29:28 +0000] [7] [INFO] Booting worker with pid: 7 +[2026-03-29 03:29:28 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 03:29:28 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 03:29:28 +0000] [7] [INFO] Started server process [7] +[2026-03-29 03:29:28 +0000] [7] [INFO] Waiting for application startup. +[2026-03-29 03:29:28 +0000] [7] [INFO] Application startup complete. +[2026-03-29 03:29:28 +0000] [8] [INFO] Started server process [8] +[2026-03-29 03:29:28 +0000] [8] [INFO] Waiting for application startup. +[2026-03-29 03:29:28 +0000] [8] [INFO] Application startup complete. +[2026-03-29 03:29:28 +0000] [9] [INFO] Started server process [9] +[2026-03-29 03:29:28 +0000] [9] [INFO] Waiting for application startup. +[2026-03-29 03:29:28 +0000] [9] [INFO] Application startup complete. +[2026-03-29 03:29:28 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 03:29:28 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 03:29:28 +0000] [13] [INFO] Started server process [13] +[2026-03-29 03:29:28 +0000] [13] [INFO] Waiting for application startup. +[2026-03-29 03:29:28 +0000] [13] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 03:29:29 +0000] [15] [INFO] Started server process [15] +[2026-03-29 03:29:29 +0000] [15] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [15] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [18] [INFO] Booting worker with pid: 18 +[2026-03-29 03:29:29 +0000] [16] [INFO] Started server process [16] +[2026-03-29 03:29:29 +0000] [16] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [16] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [18] [INFO] Started server process [18] +[2026-03-29 03:29:29 +0000] [18] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [18] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [21] [INFO] Booting worker with pid: 21 +[2026-03-29 03:29:29 +0000] [22] [INFO] Booting worker with pid: 22 +[2026-03-29 03:29:29 +0000] [23] [INFO] Booting worker with pid: 23 +[2026-03-29 03:29:29 +0000] [21] [INFO] Started server process [21] +[2026-03-29 03:29:29 +0000] [21] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [21] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [22] [INFO] Started server process [22] +[2026-03-29 03:29:29 +0000] [22] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [22] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 03:29:29 +0000] [23] [INFO] Started server process [23] +[2026-03-29 03:29:29 +0000] [23] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [23] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [28] [INFO] Booting worker with pid: 28 +[2026-03-29 03:29:29 +0000] [29] [INFO] Booting worker with pid: 29 +[2026-03-29 03:29:29 +0000] [27] [INFO] Started server process [27] +[2026-03-29 03:29:29 +0000] [27] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [27] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [31] [INFO] Booting worker with pid: 31 +[2026-03-29 03:29:29 +0000] [28] [INFO] Started server process [28] +[2026-03-29 03:29:29 +0000] [28] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [28] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [34] [INFO] Booting worker with pid: 34 +[2026-03-29 03:29:29 +0000] [29] [INFO] Started server process [29] +[2026-03-29 03:29:29 +0000] [29] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [29] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 03:29:29 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 03:29:29 +0000] [31] [INFO] Started server process [31] +[2026-03-29 03:29:29 +0000] [31] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [31] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [34] [INFO] Started server process [34] +[2026-03-29 03:29:29 +0000] [34] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [34] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [35] [INFO] Started server process [35] +[2026-03-29 03:29:29 +0000] [35] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [35] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 03:29:29 +0000] [37] [INFO] Started server process [37] +[2026-03-29 03:29:29 +0000] [37] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [37] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [40] [INFO] Started server process [40] +[2026-03-29 03:29:29 +0000] [40] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [40] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 03:29:29 +0000] [44] [INFO] Booting worker with pid: 44 +[2026-03-29 03:29:29 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 03:29:29 +0000] [43] [INFO] Started server process [43] +[2026-03-29 03:29:29 +0000] [43] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [43] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [47] [INFO] Booting worker with pid: 47 +[2026-03-29 03:29:29 +0000] [44] [INFO] Started server process [44] +[2026-03-29 03:29:29 +0000] [44] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [44] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [46] [INFO] Started server process [46] +[2026-03-29 03:29:29 +0000] [46] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [46] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 03:29:29 +0000] [47] [INFO] Started server process [47] +[2026-03-29 03:29:29 +0000] [47] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [47] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [52] [INFO] Booting worker with pid: 52 +[2026-03-29 03:29:29 +0000] [50] [INFO] Started server process [50] +[2026-03-29 03:29:29 +0000] [50] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [50] [INFO] Application startup complete. +[2026-03-29 03:29:29 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 03:29:29 +0000] [52] [INFO] Started server process [52] +[2026-03-29 03:29:29 +0000] [52] [INFO] Waiting for application startup. +[2026-03-29 03:29:29 +0000] [52] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 03:29:30 +0000] [54] [INFO] Started server process [54] +[2026-03-29 03:29:30 +0000] [54] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [54] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 03:29:30 +0000] [56] [INFO] Started server process [56] +[2026-03-29 03:29:30 +0000] [56] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [56] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 03:29:30 +0000] [58] [INFO] Started server process [58] +[2026-03-29 03:29:30 +0000] [58] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [58] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 03:29:30 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 03:29:30 +0000] [64] [INFO] Booting worker with pid: 64 +[2026-03-29 03:29:30 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 03:29:30 +0000] [61] [INFO] Started server process [61] +[2026-03-29 03:29:30 +0000] [61] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [61] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [62] [INFO] Started server process [62] +[2026-03-29 03:29:30 +0000] [62] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [62] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [63] [INFO] Started server process [63] +[2026-03-29 03:29:30 +0000] [63] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [63] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [64] [INFO] Started server process [64] +[2026-03-29 03:29:30 +0000] [64] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [64] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 03:29:30 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 03:29:30 +0000] [67] [INFO] Started server process [67] +[2026-03-29 03:29:30 +0000] [67] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [67] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [75] [INFO] Booting worker with pid: 75 +[2026-03-29 03:29:30 +0000] [70] [INFO] Started server process [70] +[2026-03-29 03:29:30 +0000] [70] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [70] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [71] [INFO] Started server process [71] +[2026-03-29 03:29:30 +0000] [71] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [71] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [75] [INFO] Started server process [75] +[2026-03-29 03:29:30 +0000] [75] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [75] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [77] [INFO] Booting worker with pid: 77 +[2026-03-29 03:29:30 +0000] [79] [INFO] Booting worker with pid: 79 +[2026-03-29 03:29:30 +0000] [77] [INFO] Started server process [77] +[2026-03-29 03:29:30 +0000] [77] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [77] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [80] [INFO] Booting worker with pid: 80 +[2026-03-29 03:29:30 +0000] [79] [INFO] Started server process [79] +[2026-03-29 03:29:30 +0000] [79] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [79] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [82] [INFO] Booting worker with pid: 82 +[2026-03-29 03:29:30 +0000] [80] [INFO] Started server process [80] +[2026-03-29 03:29:30 +0000] [80] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [80] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [84] [INFO] Booting worker with pid: 84 +[2026-03-29 03:29:30 +0000] [82] [INFO] Started server process [82] +[2026-03-29 03:29:30 +0000] [82] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [82] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 03:29:30 +0000] [84] [INFO] Started server process [84] +[2026-03-29 03:29:30 +0000] [84] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [84] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [88] [INFO] Booting worker with pid: 88 +[2026-03-29 03:29:30 +0000] [87] [INFO] Started server process [87] +[2026-03-29 03:29:30 +0000] [87] [INFO] Waiting for application startup. +[2026-03-29 03:29:30 +0000] [87] [INFO] Application startup complete. +[2026-03-29 03:29:30 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 03:29:31 +0000] [88] [INFO] Started server process [88] +[2026-03-29 03:29:31 +0000] [88] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [88] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [92] [INFO] Booting worker with pid: 92 +[2026-03-29 03:29:31 +0000] [90] [INFO] Started server process [90] +[2026-03-29 03:29:31 +0000] [90] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [90] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 03:29:31 +0000] [92] [INFO] Started server process [92] +[2026-03-29 03:29:31 +0000] [92] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [92] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 03:29:31 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 03:29:31 +0000] [95] [INFO] Started server process [95] +[2026-03-29 03:29:31 +0000] [95] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [95] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [99] [INFO] Booting worker with pid: 99 +[2026-03-29 03:29:31 +0000] [96] [INFO] Started server process [96] +[2026-03-29 03:29:31 +0000] [96] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [96] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [97] [INFO] Started server process [97] +[2026-03-29 03:29:31 +0000] [97] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [97] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 03:29:31 +0000] [99] [INFO] Started server process [99] +[2026-03-29 03:29:31 +0000] [99] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [99] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [104] [INFO] Booting worker with pid: 104 +[2026-03-29 03:29:31 +0000] [103] [INFO] Started server process [103] +[2026-03-29 03:29:31 +0000] [103] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [103] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [106] [INFO] Booting worker with pid: 106 +[2026-03-29 03:29:31 +0000] [104] [INFO] Started server process [104] +[2026-03-29 03:29:31 +0000] [104] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [104] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 03:29:31 +0000] [110] [INFO] Booting worker with pid: 110 +[2026-03-29 03:29:31 +0000] [106] [INFO] Started server process [106] +[2026-03-29 03:29:31 +0000] [106] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [106] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 03:29:31 +0000] [108] [INFO] Started server process [108] +[2026-03-29 03:29:31 +0000] [108] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [108] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [113] [INFO] Booting worker with pid: 113 +[2026-03-29 03:29:31 +0000] [110] [INFO] Started server process [110] +[2026-03-29 03:29:31 +0000] [110] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [110] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [116] [INFO] Booting worker with pid: 116 +[2026-03-29 03:29:31 +0000] [112] [INFO] Started server process [112] +[2026-03-29 03:29:31 +0000] [112] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [112] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [113] [INFO] Started server process [113] +[2026-03-29 03:29:31 +0000] [113] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [113] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 03:29:31 +0000] [116] [INFO] Started server process [116] +[2026-03-29 03:29:31 +0000] [116] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [116] [INFO] Application startup complete. +[2026-03-29 03:29:31 +0000] [120] [INFO] Booting worker with pid: 120 +[2026-03-29 03:29:31 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 03:29:31 +0000] [119] [INFO] Started server process [119] +[2026-03-29 03:29:31 +0000] [119] [INFO] Waiting for application startup. +[2026-03-29 03:29:31 +0000] [119] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [120] [INFO] Started server process [120] +[2026-03-29 03:29:32 +0000] [120] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [120] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 03:29:32 +0000] [125] [INFO] Booting worker with pid: 125 +[2026-03-29 03:29:32 +0000] [122] [INFO] Started server process [122] +[2026-03-29 03:29:32 +0000] [122] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [122] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 03:29:32 +0000] [124] [INFO] Started server process [124] +[2026-03-29 03:29:32 +0000] [124] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [124] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 03:29:32 +0000] [125] [INFO] Started server process [125] +[2026-03-29 03:29:32 +0000] [125] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [125] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 03:29:32 +0000] [132] [INFO] Booting worker with pid: 132 +[2026-03-29 03:29:32 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 03:29:32 +0000] [127] [INFO] Started server process [127] +[2026-03-29 03:29:32 +0000] [127] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [127] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 03:29:32 +0000] [136] [INFO] Booting worker with pid: 136 +[2026-03-29 03:29:32 +0000] [130] [INFO] Started server process [130] +[2026-03-29 03:29:32 +0000] [130] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [130] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [131] [INFO] Started server process [131] +[2026-03-29 03:29:32 +0000] [131] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [131] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 03:29:32 +0000] [141] [INFO] Booting worker with pid: 141 +[2026-03-29 03:29:32 +0000] [132] [INFO] Started server process [132] +[2026-03-29 03:29:32 +0000] [132] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [132] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [134] [INFO] Started server process [134] +[2026-03-29 03:29:32 +0000] [134] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [134] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [135] [INFO] Started server process [135] +[2026-03-29 03:29:32 +0000] [135] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [135] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [136] [INFO] Started server process [136] +[2026-03-29 03:29:32 +0000] [136] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [136] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [145] [INFO] Booting worker with pid: 145 +[2026-03-29 03:29:32 +0000] [141] [INFO] Started server process [141] +[2026-03-29 03:29:32 +0000] [141] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [141] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [148] [INFO] Booting worker with pid: 148 +[2026-03-29 03:29:32 +0000] [140] [INFO] Started server process [140] +[2026-03-29 03:29:32 +0000] [140] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [140] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 03:29:32 +0000] [145] [INFO] Started server process [145] +[2026-03-29 03:29:32 +0000] [145] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [145] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 03:29:32 +0000] [153] [INFO] Booting worker with pid: 153 +[2026-03-29 03:29:32 +0000] [148] [INFO] Started server process [148] +[2026-03-29 03:29:32 +0000] [148] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [148] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [149] [INFO] Started server process [149] +[2026-03-29 03:29:32 +0000] [149] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [149] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 03:29:32 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 03:29:32 +0000] [153] [INFO] Started server process [153] +[2026-03-29 03:29:32 +0000] [153] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [153] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [151] [INFO] Started server process [151] +[2026-03-29 03:29:32 +0000] [151] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [151] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 03:29:32 +0000] [160] [INFO] Booting worker with pid: 160 +[2026-03-29 03:29:32 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 03:29:32 +0000] [155] [INFO] Started server process [155] +[2026-03-29 03:29:32 +0000] [155] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [155] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [157] [INFO] Started server process [157] +[2026-03-29 03:29:32 +0000] [157] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [157] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [164] [INFO] Booting worker with pid: 164 +[2026-03-29 03:29:32 +0000] [159] [INFO] Started server process [159] +[2026-03-29 03:29:32 +0000] [159] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [159] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [168] [INFO] Booting worker with pid: 168 +[2026-03-29 03:29:32 +0000] [160] [INFO] Started server process [160] +[2026-03-29 03:29:32 +0000] [160] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [160] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [161] [INFO] Started server process [161] +[2026-03-29 03:29:32 +0000] [161] [INFO] Waiting for application startup. +[2026-03-29 03:29:32 +0000] [161] [INFO] Application startup complete. +[2026-03-29 03:29:32 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 03:29:33 +0000] [164] [INFO] Started server process [164] +[2026-03-29 03:29:33 +0000] [164] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [164] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 03:29:33 +0000] [168] [INFO] Started server process [168] +[2026-03-29 03:29:33 +0000] [168] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [168] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 03:29:33 +0000] [169] [INFO] Started server process [169] +[2026-03-29 03:29:33 +0000] [169] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [169] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [175] [INFO] Booting worker with pid: 175 +[2026-03-29 03:29:33 +0000] [172] [INFO] Started server process [172] +[2026-03-29 03:29:33 +0000] [172] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [172] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [178] [INFO] Booting worker with pid: 178 +[2026-03-29 03:29:33 +0000] [173] [INFO] Started server process [173] +[2026-03-29 03:29:33 +0000] [173] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [173] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [175] [INFO] Started server process [175] +[2026-03-29 03:29:33 +0000] [175] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [175] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 03:29:33 +0000] [178] [INFO] Started server process [178] +[2026-03-29 03:29:33 +0000] [178] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [178] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [182] [INFO] Booting worker with pid: 182 +[2026-03-29 03:29:33 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 03:29:33 +0000] [180] [INFO] Started server process [180] +[2026-03-29 03:29:33 +0000] [180] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [180] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [185] [INFO] Booting worker with pid: 185 +[2026-03-29 03:29:33 +0000] [187] [INFO] Booting worker with pid: 187 +[2026-03-29 03:29:33 +0000] [182] [INFO] Started server process [182] +[2026-03-29 03:29:33 +0000] [182] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [182] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [189] [INFO] Booting worker with pid: 189 +[2026-03-29 03:29:33 +0000] [183] [INFO] Started server process [183] +[2026-03-29 03:29:33 +0000] [183] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [190] [INFO] Booting worker with pid: 190 +[2026-03-29 03:29:33 +0000] [183] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [185] [INFO] Started server process [185] +[2026-03-29 03:29:33 +0000] [185] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [185] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 03:29:33 +0000] [187] [INFO] Started server process [187] +[2026-03-29 03:29:33 +0000] [187] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [187] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [189] [INFO] Started server process [189] +[2026-03-29 03:29:33 +0000] [189] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [189] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [190] [INFO] Started server process [190] +[2026-03-29 03:29:33 +0000] [190] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [190] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 03:29:33 +0000] [197] [INFO] Booting worker with pid: 197 +[2026-03-29 03:29:33 +0000] [198] [INFO] Booting worker with pid: 198 +[2026-03-29 03:29:33 +0000] [192] [INFO] Started server process [192] +[2026-03-29 03:29:33 +0000] [192] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [192] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 03:29:33 +0000] [196] [INFO] Started server process [196] +[2026-03-29 03:29:33 +0000] [196] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [196] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [197] [INFO] Started server process [197] +[2026-03-29 03:29:33 +0000] [197] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [197] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 03:29:33 +0000] [198] [INFO] Started server process [198] +[2026-03-29 03:29:33 +0000] [198] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [198] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [206] [INFO] Booting worker with pid: 206 +[2026-03-29 03:29:33 +0000] [200] [INFO] Started server process [200] +[2026-03-29 03:29:33 +0000] [200] [INFO] Waiting for application startup. +[2026-03-29 03:29:33 +0000] [200] [INFO] Application startup complete. +[2026-03-29 03:29:33 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 03:29:33 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 03:29:34 +0000] [204] [INFO] Started server process [204] +[2026-03-29 03:29:34 +0000] [204] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [204] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 03:29:34 +0000] [206] [INFO] Started server process [206] +[2026-03-29 03:29:34 +0000] [206] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [206] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 03:29:34 +0000] [207] [INFO] Started server process [207] +[2026-03-29 03:29:34 +0000] [207] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [207] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [208] [INFO] Started server process [208] +[2026-03-29 03:29:34 +0000] [208] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [208] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 03:29:34 +0000] [210] [INFO] Started server process [210] +[2026-03-29 03:29:34 +0000] [210] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [210] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [213] [INFO] Started server process [213] +[2026-03-29 03:29:34 +0000] [213] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [213] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [218] [INFO] Booting worker with pid: 218 +[2026-03-29 03:29:34 +0000] [219] [INFO] Booting worker with pid: 219 +[2026-03-29 03:29:34 +0000] [216] [INFO] Started server process [216] +[2026-03-29 03:29:34 +0000] [216] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [216] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [221] [INFO] Booting worker with pid: 221 +[2026-03-29 03:29:34 +0000] [218] [INFO] Started server process [218] +[2026-03-29 03:29:34 +0000] [218] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [218] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [219] [INFO] Started server process [219] +[2026-03-29 03:29:34 +0000] [219] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [219] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [224] [INFO] Booting worker with pid: 224 +[2026-03-29 03:29:34 +0000] [221] [INFO] Started server process [221] +[2026-03-29 03:29:34 +0000] [221] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [221] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 03:29:34 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 03:29:34 +0000] [224] [INFO] Started server process [224] +[2026-03-29 03:29:34 +0000] [224] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [224] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [230] [INFO] Booting worker with pid: 230 +[2026-03-29 03:29:34 +0000] [226] [INFO] Started server process [226] +[2026-03-29 03:29:34 +0000] [226] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [226] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [228] [INFO] Started server process [228] +[2026-03-29 03:29:34 +0000] [228] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [228] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [232] [INFO] Booting worker with pid: 232 +[2026-03-29 03:29:34 +0000] [234] [INFO] Booting worker with pid: 234 +[2026-03-29 03:29:34 +0000] [230] [INFO] Started server process [230] +[2026-03-29 03:29:34 +0000] [230] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [230] [INFO] Application startup complete. +[2026-03-29 03:29:34 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 03:29:34 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 03:29:34 +0000] [232] [INFO] Started server process [232] +[2026-03-29 03:29:34 +0000] [232] [INFO] Waiting for application startup. +[2026-03-29 03:29:34 +0000] [232] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [234] [INFO] Started server process [234] +[2026-03-29 03:29:35 +0000] [234] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [234] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [239] [INFO] Booting worker with pid: 239 +[2026-03-29 03:29:35 +0000] [235] [INFO] Started server process [235] +[2026-03-29 03:29:35 +0000] [235] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [235] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [242] [INFO] Booting worker with pid: 242 +[2026-03-29 03:29:35 +0000] [237] [INFO] Started server process [237] +[2026-03-29 03:29:35 +0000] [237] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [237] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 03:29:35 +0000] [245] [INFO] Booting worker with pid: 245 +[2026-03-29 03:29:35 +0000] [239] [INFO] Started server process [239] +[2026-03-29 03:29:35 +0000] [239] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [239] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 03:29:35 +0000] [242] [INFO] Started server process [242] +[2026-03-29 03:29:35 +0000] [242] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [242] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 03:29:35 +0000] [243] [INFO] Started server process [243] +[2026-03-29 03:29:35 +0000] [243] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [243] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [251] [INFO] Booting worker with pid: 251 +[2026-03-29 03:29:35 +0000] [245] [INFO] Started server process [245] +[2026-03-29 03:29:35 +0000] [245] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [245] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 03:29:35 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 03:29:35 +0000] [246] [INFO] Started server process [246] +[2026-03-29 03:29:35 +0000] [246] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [246] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [256] [INFO] Booting worker with pid: 256 +[2026-03-29 03:29:35 +0000] [251] [INFO] Started server process [251] +[2026-03-29 03:29:35 +0000] [251] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [251] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [257] [INFO] Booting worker with pid: 257 +[2026-03-29 03:29:35 +0000] [248] [INFO] Started server process [248] +[2026-03-29 03:29:35 +0000] [248] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [248] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [260] [INFO] Booting worker with pid: 260 +[2026-03-29 03:29:35 +0000] [256] [INFO] Started server process [256] +[2026-03-29 03:29:35 +0000] [256] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [256] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [253] [INFO] Started server process [253] +[2026-03-29 03:29:35 +0000] [253] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [253] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [263] [INFO] Booting worker with pid: 263 +[2026-03-29 03:29:35 +0000] [257] [INFO] Started server process [257] +[2026-03-29 03:29:35 +0000] [257] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [257] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [265] [INFO] Booting worker with pid: 265 +[2026-03-29 03:29:35 +0000] [260] [INFO] Started server process [260] +[2026-03-29 03:29:35 +0000] [260] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [260] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [252] [INFO] Started server process [252] +[2026-03-29 03:29:35 +0000] [252] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [267] [INFO] Booting worker with pid: 267 +[2026-03-29 03:29:35 +0000] [252] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [268] [INFO] Booting worker with pid: 268 +[2026-03-29 03:29:35 +0000] [270] [INFO] Booting worker with pid: 270 +[2026-03-29 03:29:35 +0000] [265] [INFO] Started server process [265] +[2026-03-29 03:29:35 +0000] [265] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [265] [INFO] Application startup complete. +[2026-03-29 03:29:35 +0000] [272] [INFO] Booting worker with pid: 272 +[2026-03-29 03:29:35 +0000] [267] [INFO] Started server process [267] +[2026-03-29 03:29:35 +0000] [267] [INFO] Waiting for application startup. +[2026-03-29 03:29:35 +0000] [267] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [263] [INFO] Started server process [263] +[2026-03-29 03:29:36 +0000] [263] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [263] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [275] [INFO] Booting worker with pid: 275 +[2026-03-29 03:29:36 +0000] [276] [INFO] Booting worker with pid: 276 +[2026-03-29 03:29:36 +0000] [270] [INFO] Started server process [270] +[2026-03-29 03:29:36 +0000] [270] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [270] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [278] [INFO] Booting worker with pid: 278 +[2026-03-29 03:29:36 +0000] [279] [INFO] Booting worker with pid: 279 +[2026-03-29 03:29:36 +0000] [281] [INFO] Booting worker with pid: 281 +[2026-03-29 03:29:36 +0000] [268] [INFO] Started server process [268] +[2026-03-29 03:29:36 +0000] [275] [INFO] Started server process [275] +[2026-03-29 03:29:36 +0000] [275] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [268] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [275] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [268] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [282] [INFO] Booting worker with pid: 282 +[2026-03-29 03:29:36 +0000] [272] [INFO] Started server process [272] +[2026-03-29 03:29:36 +0000] [272] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [272] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [278] [INFO] Started server process [278] +[2026-03-29 03:29:36 +0000] [278] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [278] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [286] [INFO] Booting worker with pid: 286 +[2026-03-29 03:29:36 +0000] [281] [INFO] Started server process [281] +[2026-03-29 03:29:36 +0000] [281] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [281] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [282] [INFO] Started server process [282] +[2026-03-29 03:29:36 +0000] [282] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [282] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [289] [INFO] Booting worker with pid: 289 +[2026-03-29 03:29:36 +0000] [276] [INFO] Started server process [276] +[2026-03-29 03:29:36 +0000] [276] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [276] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [291] [INFO] Booting worker with pid: 291 +[2026-03-29 03:29:36 +0000] [292] [INFO] Booting worker with pid: 292 +[2026-03-29 03:29:36 +0000] [279] [INFO] Started server process [279] +[2026-03-29 03:29:36 +0000] [293] [INFO] Booting worker with pid: 293 +[2026-03-29 03:29:36 +0000] [279] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [279] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [294] [INFO] Booting worker with pid: 294 +[2026-03-29 03:29:36 +0000] [289] [INFO] Started server process [289] +[2026-03-29 03:29:36 +0000] [289] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [289] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [297] [INFO] Booting worker with pid: 297 +[2026-03-29 03:29:36 +0000] [286] [INFO] Started server process [286] +[2026-03-29 03:29:36 +0000] [286] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [286] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [299] [INFO] Booting worker with pid: 299 +[2026-03-29 03:29:36 +0000] [293] [INFO] Started server process [293] +[2026-03-29 03:29:36 +0000] [293] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [293] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [292] [INFO] Started server process [292] +[2026-03-29 03:29:36 +0000] [292] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [292] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [291] [INFO] Started server process [291] +[2026-03-29 03:29:36 +0000] [291] [INFO] Waiting for application startup. +[2026-03-29 03:29:36 +0000] [291] [INFO] Application startup complete. +[2026-03-29 03:29:36 +0000] [302] [INFO] Booting worker with pid: 302 +[2026-03-29 03:29:37 +0000] [294] [INFO] Started server process [294] +[2026-03-29 03:29:37 +0000] [294] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [294] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [304] [INFO] Booting worker with pid: 304 +[2026-03-29 03:29:37 +0000] [306] [INFO] Booting worker with pid: 306 +[2026-03-29 03:29:37 +0000] [299] [INFO] Started server process [299] +[2026-03-29 03:29:37 +0000] [299] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [299] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [309] [INFO] Booting worker with pid: 309 +[2026-03-29 03:29:37 +0000] [302] [INFO] Started server process [302] +[2026-03-29 03:29:37 +0000] [302] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [302] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [310] [INFO] Booting worker with pid: 310 +[2026-03-29 03:29:37 +0000] [297] [INFO] Started server process [297] +[2026-03-29 03:29:37 +0000] [297] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [297] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [311] [INFO] Booting worker with pid: 311 +[2026-03-29 03:29:37 +0000] [304] [INFO] Started server process [304] +[2026-03-29 03:29:37 +0000] [304] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [304] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [313] [INFO] Booting worker with pid: 313 +[2026-03-29 03:29:37 +0000] [314] [INFO] Booting worker with pid: 314 +[2026-03-29 03:29:37 +0000] [311] [INFO] Started server process [311] +[2026-03-29 03:29:37 +0000] [311] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [317] [INFO] Booting worker with pid: 317 +[2026-03-29 03:29:37 +0000] [311] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [318] [INFO] Booting worker with pid: 318 +[2026-03-29 03:29:37 +0000] [319] [INFO] Booting worker with pid: 319 +[2026-03-29 03:29:37 +0000] [306] [INFO] Started server process [306] +[2026-03-29 03:29:37 +0000] [306] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [306] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [321] [INFO] Booting worker with pid: 321 +[2026-03-29 03:29:37 +0000] [309] [INFO] Started server process [309] +[2026-03-29 03:29:37 +0000] [309] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [309] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [323] [INFO] Booting worker with pid: 323 +[2026-03-29 03:29:37 +0000] [324] [INFO] Booting worker with pid: 324 +[2026-03-29 03:29:37 +0000] [319] [INFO] Started server process [319] +[2026-03-29 03:29:37 +0000] [319] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [319] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [313] [INFO] Started server process [313] +[2026-03-29 03:29:37 +0000] [313] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [313] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [329] [INFO] Booting worker with pid: 329 +[2026-03-29 03:29:37 +0000] [321] [INFO] Started server process [321] +[2026-03-29 03:29:37 +0000] [321] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [321] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [310] [INFO] Started server process [310] +[2026-03-29 03:29:37 +0000] [310] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [310] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [314] [INFO] Started server process [314] +[2026-03-29 03:29:37 +0000] [314] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [314] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [333] [INFO] Booting worker with pid: 333 +[2026-03-29 03:29:37 +0000] [317] [INFO] Started server process [317] +[2026-03-29 03:29:37 +0000] [317] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [317] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [318] [INFO] Started server process [318] +[2026-03-29 03:29:37 +0000] [318] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [318] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [334] [INFO] Booting worker with pid: 334 +[2026-03-29 03:29:37 +0000] [323] [INFO] Started server process [323] +[2026-03-29 03:29:37 +0000] [323] [INFO] Waiting for application startup. +[2026-03-29 03:29:37 +0000] [323] [INFO] Application startup complete. +[2026-03-29 03:29:37 +0000] [335] [INFO] Booting worker with pid: 335 +[2026-03-29 03:29:37 +0000] [336] [INFO] Booting worker with pid: 336 +[2026-03-29 03:29:38 +0000] [339] [INFO] Booting worker with pid: 339 +[2026-03-29 03:29:38 +0000] [341] [INFO] Booting worker with pid: 341 +[2026-03-29 03:29:38 +0000] [334] [INFO] Started server process [334] +[2026-03-29 03:29:38 +0000] [334] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [334] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [342] [INFO] Booting worker with pid: 342 +[2026-03-29 03:29:38 +0000] [343] [INFO] Booting worker with pid: 343 +[2026-03-29 03:29:38 +0000] [324] [INFO] Started server process [324] +[2026-03-29 03:29:38 +0000] [336] [INFO] Started server process [336] +[2026-03-29 03:29:38 +0000] [336] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [324] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [324] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [336] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [346] [INFO] Booting worker with pid: 346 +[2026-03-29 03:29:38 +0000] [348] [INFO] Booting worker with pid: 348 +[2026-03-29 03:29:38 +0000] [335] [INFO] Started server process [335] +[2026-03-29 03:29:38 +0000] [335] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [335] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [349] [INFO] Booting worker with pid: 349 +[2026-03-29 03:29:38 +0000] [329] [INFO] Started server process [329] +[2026-03-29 03:29:38 +0000] [329] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [329] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [351] [INFO] Booting worker with pid: 351 +[2026-03-29 03:29:38 +0000] [339] [INFO] Started server process [339] +[2026-03-29 03:29:38 +0000] [339] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [339] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [333] [INFO] Started server process [333] +[2026-03-29 03:29:38 +0000] [333] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [333] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [354] [INFO] Booting worker with pid: 354 +[2026-03-29 03:29:38 +0000] [341] [INFO] Started server process [341] +[2026-03-29 03:29:38 +0000] [341] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [341] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [348] [INFO] Started server process [348] +[2026-03-29 03:29:38 +0000] [348] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [348] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [357] [INFO] Booting worker with pid: 357 +[2026-03-29 03:29:38 +0000] [349] [INFO] Started server process [349] +[2026-03-29 03:29:38 +0000] [349] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [349] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [343] [INFO] Started server process [343] +[2026-03-29 03:29:38 +0000] [343] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [343] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [358] [INFO] Booting worker with pid: 358 +[2026-03-29 03:29:38 +0000] [342] [INFO] Started server process [342] +[2026-03-29 03:29:38 +0000] [342] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [342] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [360] [INFO] Booting worker with pid: 360 +[2026-03-29 03:29:38 +0000] [357] [INFO] Started server process [357] +[2026-03-29 03:29:38 +0000] [357] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [357] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [362] [INFO] Booting worker with pid: 362 +[2026-03-29 03:29:38 +0000] [364] [INFO] Booting worker with pid: 364 +[2026-03-29 03:29:38 +0000] [351] [INFO] Started server process [351] +[2026-03-29 03:29:38 +0000] [351] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [351] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [367] [INFO] Booting worker with pid: 367 +[2026-03-29 03:29:38 +0000] [354] [INFO] Started server process [354] +[2026-03-29 03:29:38 +0000] [354] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [354] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [360] [INFO] Started server process [360] +[2026-03-29 03:29:38 +0000] [360] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [360] [INFO] Application startup complete. +[2026-03-29 03:29:38 +0000] [370] [INFO] Booting worker with pid: 370 +[2026-03-29 03:29:38 +0000] [364] [INFO] Started server process [364] +[2026-03-29 03:29:38 +0000] [364] [INFO] Waiting for application startup. +[2026-03-29 03:29:38 +0000] [364] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [372] [INFO] Booting worker with pid: 372 +[2026-03-29 03:29:39 +0000] [370] [INFO] Started server process [370] +[2026-03-29 03:29:39 +0000] [370] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [370] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [375] [INFO] Booting worker with pid: 375 +[2026-03-29 03:29:39 +0000] [358] [INFO] Started server process [358] +[2026-03-29 03:29:39 +0000] [358] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [358] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [346] [INFO] Started server process [346] +[2026-03-29 03:29:39 +0000] [346] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [346] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [378] [INFO] Booting worker with pid: 378 +[2026-03-29 03:29:39 +0000] [379] [INFO] Booting worker with pid: 379 +[2026-03-29 03:29:39 +0000] [372] [INFO] Started server process [372] +[2026-03-29 03:29:39 +0000] [372] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [372] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [367] [INFO] Started server process [367] +[2026-03-29 03:29:39 +0000] [367] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [367] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [362] [INFO] Started server process [362] +[2026-03-29 03:29:39 +0000] [362] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [362] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [380] [INFO] Booting worker with pid: 380 +[2026-03-29 03:29:39 +0000] [381] [INFO] Booting worker with pid: 381 +[2026-03-29 03:29:39 +0000] [382] [INFO] Booting worker with pid: 382 +[2026-03-29 03:29:39 +0000] [383] [INFO] Booting worker with pid: 383 +[2026-03-29 03:29:39 +0000] [379] [INFO] Started server process [379] +[2026-03-29 03:29:39 +0000] [379] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [379] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [387] [INFO] Booting worker with pid: 387 +[2026-03-29 03:29:39 +0000] [382] [INFO] Started server process [382] +[2026-03-29 03:29:39 +0000] [382] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [382] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [375] [INFO] Started server process [375] +[2026-03-29 03:29:39 +0000] [375] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [375] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [389] [INFO] Booting worker with pid: 389 +[2026-03-29 03:29:39 +0000] [390] [INFO] Booting worker with pid: 390 +[2026-03-29 03:29:39 +0000] [378] [INFO] Started server process [378] +[2026-03-29 03:29:39 +0000] [380] [INFO] Started server process [380] +[2026-03-29 03:29:39 +0000] [380] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [380] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [378] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [378] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [394] [INFO] Booting worker with pid: 394 +[2026-03-29 03:29:39 +0000] [387] [INFO] Started server process [387] +[2026-03-29 03:29:39 +0000] [387] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [387] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [397] [INFO] Booting worker with pid: 397 +[2026-03-29 03:29:39 +0000] [383] [INFO] Started server process [383] +[2026-03-29 03:29:39 +0000] [383] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [383] [INFO] Application startup complete. +[2026-03-29 03:29:39 +0000] [398] [INFO] Booting worker with pid: 398 +[2026-03-29 03:29:39 +0000] [389] [INFO] Started server process [389] +[2026-03-29 03:29:39 +0000] [389] [INFO] Waiting for application startup. +[2026-03-29 03:29:39 +0000] [389] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [381] [INFO] Started server process [381] +[2026-03-29 03:29:40 +0000] [381] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [381] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [399] [INFO] Booting worker with pid: 399 +[2026-03-29 03:29:40 +0000] [400] [INFO] Booting worker with pid: 400 +[2026-03-29 03:29:40 +0000] [402] [INFO] Booting worker with pid: 402 +[2026-03-29 03:29:40 +0000] [398] [INFO] Started server process [398] +[2026-03-29 03:29:40 +0000] [398] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [398] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [390] [INFO] Started server process [390] +[2026-03-29 03:29:40 +0000] [390] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [390] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [404] [INFO] Booting worker with pid: 404 +[2026-03-29 03:29:40 +0000] [406] [INFO] Booting worker with pid: 406 +[2026-03-29 03:29:40 +0000] [397] [INFO] Started server process [397] +[2026-03-29 03:29:40 +0000] [397] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [397] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [407] [INFO] Booting worker with pid: 407 +[2026-03-29 03:29:40 +0000] [399] [INFO] Started server process [399] +[2026-03-29 03:29:40 +0000] [399] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [399] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [411] [INFO] Booting worker with pid: 411 +[2026-03-29 03:29:40 +0000] [400] [INFO] Started server process [400] +[2026-03-29 03:29:40 +0000] [400] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [400] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [412] [INFO] Booting worker with pid: 412 +[2026-03-29 03:29:40 +0000] [414] [INFO] Booting worker with pid: 414 +[2026-03-29 03:29:40 +0000] [406] [INFO] Started server process [406] +[2026-03-29 03:29:40 +0000] [406] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [402] [INFO] Started server process [402] +[2026-03-29 03:29:40 +0000] [402] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [406] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [402] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [411] [INFO] Started server process [411] +[2026-03-29 03:29:40 +0000] [411] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [411] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [416] [INFO] Booting worker with pid: 416 +[2026-03-29 03:29:40 +0000] [412] [INFO] Started server process [412] +[2026-03-29 03:29:40 +0000] [412] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [412] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [421] [INFO] Booting worker with pid: 421 +[2026-03-29 03:29:40 +0000] [422] [INFO] Booting worker with pid: 422 +[2026-03-29 03:29:40 +0000] [407] [INFO] Started server process [407] +[2026-03-29 03:29:40 +0000] [407] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [407] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [394] [INFO] Started server process [394] +[2026-03-29 03:29:40 +0000] [394] [INFO] Waiting for application startup. +[2026-03-29 03:29:40 +0000] [394] [INFO] Application startup complete. +[2026-03-29 03:29:40 +0000] [423] [INFO] Booting worker with pid: 423 +[2026-03-29 03:29:40 +0000] [424] [INFO] Booting worker with pid: 424 +[2026-03-29 03:29:41 +0000] [404] [INFO] Started server process [404] +[2026-03-29 03:29:41 +0000] [404] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [404] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [422] [INFO] Started server process [422] +[2026-03-29 03:29:41 +0000] [422] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [422] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [427] [INFO] Booting worker with pid: 427 +[2026-03-29 03:29:41 +0000] [430] [INFO] Booting worker with pid: 430 +[2026-03-29 03:29:41 +0000] [431] [INFO] Booting worker with pid: 431 +[2026-03-29 03:29:41 +0000] [414] [INFO] Started server process [414] +[2026-03-29 03:29:41 +0000] [414] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [414] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [416] [INFO] Started server process [416] +[2026-03-29 03:29:41 +0000] [416] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [416] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [432] [INFO] Booting worker with pid: 432 +[2026-03-29 03:29:41 +0000] [433] [INFO] Booting worker with pid: 433 +[2026-03-29 03:29:41 +0000] [435] [INFO] Booting worker with pid: 435 +[2026-03-29 03:29:41 +0000] [421] [INFO] Started server process [421] +[2026-03-29 03:29:41 +0000] [421] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [421] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [423] [INFO] Started server process [423] +[2026-03-29 03:29:41 +0000] [423] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [423] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [436] [INFO] Booting worker with pid: 436 +[2026-03-29 03:29:41 +0000] [431] [INFO] Started server process [431] +[2026-03-29 03:29:41 +0000] [431] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [431] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [439] [INFO] Booting worker with pid: 439 +[2026-03-29 03:29:41 +0000] [430] [INFO] Started server process [430] +[2026-03-29 03:29:41 +0000] [430] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [430] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [440] [INFO] Booting worker with pid: 440 +[2026-03-29 03:29:41 +0000] [433] [INFO] Started server process [433] +[2026-03-29 03:29:41 +0000] [433] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [433] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [442] [INFO] Booting worker with pid: 442 +[2026-03-29 03:29:41 +0000] [427] [INFO] Started server process [427] +[2026-03-29 03:29:41 +0000] [427] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [427] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [432] [INFO] Started server process [432] +[2026-03-29 03:29:41 +0000] [432] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [432] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [446] [INFO] Booting worker with pid: 446 +[2026-03-29 03:29:41 +0000] [448] [INFO] Booting worker with pid: 448 +[2026-03-29 03:29:41 +0000] [451] [INFO] Booting worker with pid: 451 +[2026-03-29 03:29:41 +0000] [435] [INFO] Started server process [435] +[2026-03-29 03:29:41 +0000] [435] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [435] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [440] [INFO] Started server process [440] +[2026-03-29 03:29:41 +0000] [440] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [440] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [452] [INFO] Booting worker with pid: 452 +[2026-03-29 03:29:41 +0000] [439] [INFO] Started server process [439] +[2026-03-29 03:29:41 +0000] [439] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [439] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [453] [INFO] Booting worker with pid: 453 +[2026-03-29 03:29:41 +0000] [454] [INFO] Booting worker with pid: 454 +[2026-03-29 03:29:41 +0000] [456] [INFO] Booting worker with pid: 456 +[2026-03-29 03:29:41 +0000] [442] [INFO] Started server process [442] +[2026-03-29 03:29:41 +0000] [442] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [442] [INFO] Application startup complete. +[2026-03-29 03:29:41 +0000] [446] [INFO] Started server process [446] +[2026-03-29 03:29:41 +0000] [446] [INFO] Waiting for application startup. +[2026-03-29 03:29:41 +0000] [446] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [459] [INFO] Booting worker with pid: 459 +[2026-03-29 03:29:42 +0000] [424] [INFO] Started server process [424] +[2026-03-29 03:29:42 +0000] [424] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [436] [INFO] Started server process [436] +[2026-03-29 03:29:42 +0000] [436] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [436] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [456] [INFO] Started server process [456] +[2026-03-29 03:29:42 +0000] [456] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [456] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [424] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [462] [INFO] Booting worker with pid: 462 +[2026-03-29 03:29:42 +0000] [463] [INFO] Booting worker with pid: 463 +[2026-03-29 03:29:42 +0000] [465] [INFO] Booting worker with pid: 465 +[2026-03-29 03:29:42 +0000] [452] [INFO] Started server process [452] +[2026-03-29 03:29:42 +0000] [452] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [452] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [467] [INFO] Booting worker with pid: 467 +[2026-03-29 03:29:42 +0000] [454] [INFO] Started server process [454] +[2026-03-29 03:29:42 +0000] [454] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [454] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [469] [INFO] Booting worker with pid: 469 +[2026-03-29 03:29:42 +0000] [471] [INFO] Booting worker with pid: 471 +[2026-03-29 03:29:42 +0000] [463] [INFO] Started server process [463] +[2026-03-29 03:29:42 +0000] [463] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [463] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [448] [INFO] Started server process [448] +[2026-03-29 03:29:42 +0000] [448] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [448] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [473] [INFO] Booting worker with pid: 473 +[2026-03-29 03:29:42 +0000] [476] [INFO] Booting worker with pid: 476 +[2026-03-29 03:29:42 +0000] [451] [INFO] Started server process [451] +[2026-03-29 03:29:42 +0000] [451] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [451] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [478] [INFO] Booting worker with pid: 478 +[2026-03-29 03:29:42 +0000] [479] [INFO] Booting worker with pid: 479 +[2026-03-29 03:29:42 +0000] [465] [INFO] Started server process [465] +[2026-03-29 03:29:42 +0000] [465] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [465] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [462] [INFO] Started server process [462] +[2026-03-29 03:29:42 +0000] [462] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [462] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [467] [INFO] Started server process [467] +[2026-03-29 03:29:42 +0000] [467] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [467] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [453] [INFO] Started server process [453] +[2026-03-29 03:29:42 +0000] [453] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [453] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [483] [INFO] Booting worker with pid: 483 +[2026-03-29 03:29:42 +0000] [471] [INFO] Started server process [471] +[2026-03-29 03:29:42 +0000] [471] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [471] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [459] [INFO] Started server process [459] +[2026-03-29 03:29:42 +0000] [459] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [473] [INFO] Started server process [473] +[2026-03-29 03:29:42 +0000] [473] [INFO] Waiting for application startup. +[2026-03-29 03:29:42 +0000] [473] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [459] [INFO] Application startup complete. +[2026-03-29 03:29:42 +0000] [486] [INFO] Booting worker with pid: 486 +[2026-03-29 03:29:42 +0000] [487] [INFO] Booting worker with pid: 487 +[2026-03-29 03:29:43 +0000] [476] [INFO] Started server process [476] +[2026-03-29 03:29:43 +0000] [476] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [476] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [490] [INFO] Booting worker with pid: 490 +[2026-03-29 03:29:43 +0000] [469] [INFO] Started server process [469] +[2026-03-29 03:29:43 +0000] [469] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [469] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [479] [INFO] Started server process [479] +[2026-03-29 03:29:43 +0000] [479] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [479] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [491] [INFO] Booting worker with pid: 491 +[2026-03-29 03:29:43 +0000] [478] [INFO] Started server process [478] +[2026-03-29 03:29:43 +0000] [478] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [478] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [494] [INFO] Booting worker with pid: 494 +[2026-03-29 03:29:43 +0000] [483] [INFO] Started server process [483] +[2026-03-29 03:29:43 +0000] [483] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [483] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [495] [INFO] Booting worker with pid: 495 +[2026-03-29 03:29:43 +0000] [487] [INFO] Started server process [487] +[2026-03-29 03:29:43 +0000] [487] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [487] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [491] [INFO] Started server process [491] +[2026-03-29 03:29:43 +0000] [491] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [491] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [498] [INFO] Booting worker with pid: 498 +[2026-03-29 03:29:43 +0000] [490] [INFO] Started server process [490] +[2026-03-29 03:29:43 +0000] [490] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [490] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [500] [INFO] Booting worker with pid: 500 +[2026-03-29 03:29:43 +0000] [486] [INFO] Started server process [486] +[2026-03-29 03:29:43 +0000] [486] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [486] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [501] [INFO] Booting worker with pid: 501 +[2026-03-29 03:29:43 +0000] [502] [INFO] Booting worker with pid: 502 +[2026-03-29 03:29:43 +0000] [498] [INFO] Started server process [498] +[2026-03-29 03:29:43 +0000] [498] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [498] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [505] [INFO] Booting worker with pid: 505 +[2026-03-29 03:29:43 +0000] [507] [INFO] Booting worker with pid: 507 +[2026-03-29 03:29:43 +0000] [500] [INFO] Started server process [500] +[2026-03-29 03:29:43 +0000] [500] [INFO] Waiting for application startup. +[2026-03-29 03:29:43 +0000] [500] [INFO] Application startup complete. +[2026-03-29 03:29:43 +0000] [508] [INFO] Booting worker with pid: 508 +[2026-03-29 03:29:43 +0000] [509] [INFO] Booting worker with pid: 509 +[2026-03-29 03:29:44 +0000] [510] [INFO] Booting worker with pid: 510 +[2026-03-29 03:29:44 +0000] [508] [INFO] Started server process [508] +[2026-03-29 03:29:44 +0000] [508] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [508] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [495] [INFO] Started server process [495] +[2026-03-29 03:29:44 +0000] [495] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [495] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [507] [INFO] Started server process [507] +[2026-03-29 03:29:44 +0000] [507] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [507] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [510] [INFO] Started server process [510] +[2026-03-29 03:29:44 +0000] [510] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [510] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [505] [INFO] Started server process [505] +[2026-03-29 03:29:44 +0000] [505] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [505] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [494] [INFO] Started server process [494] +[2026-03-29 03:29:44 +0000] [494] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [494] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [502] [INFO] Started server process [502] +[2026-03-29 03:29:44 +0000] [502] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [501] [INFO] Started server process [501] +[2026-03-29 03:29:44 +0000] [502] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [501] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [501] [INFO] Application startup complete. +[2026-03-29 03:29:44 +0000] [509] [INFO] Started server process [509] +[2026-03-29 03:29:44 +0000] [509] [INFO] Waiting for application startup. +[2026-03-29 03:29:44 +0000] [509] [INFO] Application startup complete. +[2026-03-29 03:30:02 +0000] [185] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1064,16 +1064,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:14:52 +0000] [57] [ERROR] Exception in ASGI application +[2026-03-29 03:30:02 +0000] [292] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1112,16 +1109,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:14:52 +0000] [25] [ERROR] Exception in ASGI application +[2026-03-29 03:30:02 +0000] [235] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1160,16 +1154,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:14:52 +0000] [69] [ERROR] Exception in ASGI application +[2026-03-29 03:30:02 +0000] [267] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1208,16 +1199,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:14:52 +0000] [223] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [61] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1256,16 +1244,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:14:52 +0000] [482] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [77] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1304,16 +1289,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:14:52 +0000] [166] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [293] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1352,16 +1334,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:15:09 +0000] [284] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [252] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1400,16 +1379,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:15:09 +0000] [208] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [200] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1448,16 +1424,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [320] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [140] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1496,16 +1469,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [49] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [242] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1544,16 +1514,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [21] [ERROR] Exception in ASGI application +[2026-03-29 03:30:19 +0000] [313] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1592,828 +1559,9 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [473] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [371] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [372] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [232] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [382] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [61] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [40] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [118] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [366] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [290] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [304] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [34] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [433] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [134] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [240] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [433] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:15:27 +0000] [468] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect diff --git a/site/static/logs/mixed/4096/deno.log b/site/static/logs/mixed/4096/deno.log index 00dc4094..808c514d 100644 --- a/site/static/logs/mixed/4096/deno.log +++ b/site/static/logs/mixed/4096/deno.log @@ -1,404 +1,157 @@ [serve-worker-0 ] deno serve: Listening on http://0.0.0.0:8080/ with 128 threads -[serve-worker-92] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-101] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-35] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-30] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-47] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-43] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-123] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-125] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-123] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-39] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-81] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-31] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-1 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-99] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-7 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-70] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-127] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-29] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-17] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-52] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-14] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-11] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-14] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-121] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-0 ] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-11] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-67] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-78] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-67] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-72] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-75] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-89] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-75] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-78] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-75] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-114] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-62] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-107] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-19] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-75] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-69] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-75] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-92] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-75] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-92] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-98] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-114] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-86] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-87] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-86] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-87] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-69] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "BadResource" -} -[serve-worker-6 ] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-75] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-8 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-75] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-64] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-110] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-23] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-67] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-23] Http: error reading a body from connection + at Object.pull (ext:deno_web/06_streams.js:963:38) + at Module.invokeCallbackFunction (ext:deno_webidl/00_webidl.js:1116:16) + at ReadableByteStreamController.pullAlgorithm (ext:deno_web/06_streams.js:3588:14) + at readableByteStreamControllerCallPullIfNeeded (ext:deno_web/06_streams.js:1263:49) + at ext:deno_web/06_streams.js:1271:11 + at eventLoopTick (ext:core/01_core.js:177:7) { name: "Http" } -[serve-worker-67] BadResource: Cannot read body as underlying resource unavailable +[serve-worker-75] BadResource: Cannot read body as underlying resource unavailable at ext:deno_fetch/22_body.js:170:19 at eventLoopTick (ext:core/01_core.js:177:7) at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) + at async Object.fetch (file:///app/main.ts:200:27) at async mapped (ext:deno_http/00_serve.ts:391:18) { name: "BadResource" } -[serve-worker-77] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-11] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-87] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-75] Http: error reading a body from connection + at async Object.pull (ext:deno_web/06_streams.js:963:27) { name: "Http" } -[serve-worker-69] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-32] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } -[serve-worker-61] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-113] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-55] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-6 ] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-94] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" -} -[serve-worker-108] Http: error reading a body from connection - at async readableStreamCollectIntoUint8Array (ext:deno_web/06_streams.js:1095:19) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:125:40) - at async mapped (ext:deno_http/00_serve.ts:391:18) { - name: "Http" +[serve-worker-36] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { + name: "BadResource" } -[serve-worker-108] BadResource: Cannot read body as underlying resource unavailable - at ext:deno_fetch/22_body.js:170:19 - at eventLoopTick (ext:core/01_core.js:177:7) - at async consumeBody (ext:deno_fetch/22_body.js:268:9) - at async Object.fetch (file:///app/main.ts:132:27) - at async mapped (ext:deno_http/00_serve.ts:391:18) { +[serve-worker-63] BadResource: Cannot read request body as underlying resource unavailable + at ext:deno_http/00_serve.ts:252:26 + at Object.pull (ext:deno_web/06_streams.js:973:11) + at eventLoopTick (ext:core/01_core.js:177:7) { name: "BadResource" } diff --git a/site/static/logs/mixed/4096/django.log b/site/static/logs/mixed/4096/django.log index d49e399a..34318bfa 100644 --- a/site/static/logs/mixed/4096/django.log +++ b/site/static/logs/mixed/4096/django.log @@ -1,319 +1,259 @@ -[2026-03-26 00:57:55 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 00:57:55 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 00:57:55 +0000] [1] [INFO] Using worker: sync -[2026-03-26 00:57:55 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 00:57:56 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 00:57:56 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 00:57:56 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 00:57:56 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 00:57:56 +0000] [12] [INFO] Booting worker with pid: 12 -[2026-03-26 00:57:56 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 00:57:56 +0000] [14] [INFO] Booting worker with pid: 14 -[2026-03-26 00:57:56 +0000] [15] [INFO] Booting worker with pid: 15 -[2026-03-26 00:57:56 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 00:57:56 +0000] [17] [INFO] Booting worker with pid: 17 -[2026-03-26 00:57:56 +0000] [18] [INFO] Booting worker with pid: 18 -[2026-03-26 00:57:56 +0000] [19] [INFO] Booting worker with pid: 19 -[2026-03-26 00:57:56 +0000] [20] [INFO] Booting worker with pid: 20 -[2026-03-26 00:57:56 +0000] [21] [INFO] Booting worker with pid: 21 -[2026-03-26 00:57:56 +0000] [22] [INFO] Booting worker with pid: 22 -[2026-03-26 00:57:56 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 00:57:56 +0000] [24] [INFO] Booting worker with pid: 24 -[2026-03-26 00:57:56 +0000] [25] [INFO] Booting worker with pid: 25 -[2026-03-26 00:57:56 +0000] [26] [INFO] Booting worker with pid: 26 -[2026-03-26 00:57:56 +0000] [27] [INFO] Booting worker with pid: 27 -[2026-03-26 00:57:56 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 00:57:56 +0000] [29] [INFO] Booting worker with pid: 29 -[2026-03-26 00:57:57 +0000] [30] [INFO] Booting worker with pid: 30 -[2026-03-26 00:57:57 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 00:57:57 +0000] [32] [INFO] Booting worker with pid: 32 -[2026-03-26 00:57:57 +0000] [33] [INFO] Booting worker with pid: 33 -[2026-03-26 00:57:57 +0000] [34] [INFO] Booting worker with pid: 34 -[2026-03-26 00:57:57 +0000] [35] [INFO] Booting worker with pid: 35 -[2026-03-26 00:57:57 +0000] [36] [INFO] Booting worker with pid: 36 -[2026-03-26 00:57:57 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 00:57:57 +0000] [38] [INFO] Booting worker with pid: 38 -[2026-03-26 00:57:57 +0000] [39] [INFO] Booting worker with pid: 39 -[2026-03-26 00:57:57 +0000] [40] [INFO] Booting worker with pid: 40 -[2026-03-26 00:57:57 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 00:57:57 +0000] [42] [INFO] Booting worker with pid: 42 -[2026-03-26 00:57:57 +0000] [43] [INFO] Booting worker with pid: 43 -[2026-03-26 00:57:57 +0000] [44] [INFO] Booting worker with pid: 44 -[2026-03-26 00:57:57 +0000] [45] [INFO] Booting worker with pid: 45 -[2026-03-26 00:57:57 +0000] [46] [INFO] Booting worker with pid: 46 -[2026-03-26 00:57:57 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 00:57:58 +0000] [48] [INFO] Booting worker with pid: 48 -[2026-03-26 00:57:58 +0000] [49] [INFO] Booting worker with pid: 49 -[2026-03-26 00:57:58 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 00:57:58 +0000] [51] [INFO] Booting worker with pid: 51 -[2026-03-26 00:57:58 +0000] [52] [INFO] Booting worker with pid: 52 -[2026-03-26 00:57:58 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 00:57:58 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 00:57:58 +0000] [55] [INFO] Booting worker with pid: 55 -[2026-03-26 00:57:58 +0000] [56] [INFO] Booting worker with pid: 56 -[2026-03-26 00:57:58 +0000] [57] [INFO] Booting worker with pid: 57 -[2026-03-26 00:57:58 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 00:57:58 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 00:57:58 +0000] [60] [INFO] Booting worker with pid: 60 -[2026-03-26 00:57:58 +0000] [61] [INFO] Booting worker with pid: 61 -[2026-03-26 00:57:58 +0000] [62] [INFO] Booting worker with pid: 62 -[2026-03-26 00:57:58 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 00:57:58 +0000] [64] [INFO] Booting worker with pid: 64 -[2026-03-26 00:57:58 +0000] [65] [INFO] Booting worker with pid: 65 -[2026-03-26 00:57:58 +0000] [66] [INFO] Booting worker with pid: 66 -[2026-03-26 00:57:58 +0000] [67] [INFO] Booting worker with pid: 67 -[2026-03-26 00:57:58 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 00:57:58 +0000] [69] [INFO] Booting worker with pid: 69 -[2026-03-26 00:57:58 +0000] [70] [INFO] Booting worker with pid: 70 -[2026-03-26 00:57:59 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 00:57:59 +0000] [72] [INFO] Booting worker with pid: 72 -[2026-03-26 00:57:59 +0000] [73] [INFO] Booting worker with pid: 73 -[2026-03-26 00:57:59 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 00:57:59 +0000] [75] [INFO] Booting worker with pid: 75 -[2026-03-26 00:57:59 +0000] [76] [INFO] Booting worker with pid: 76 -[2026-03-26 00:57:59 +0000] [77] [INFO] Booting worker with pid: 77 -[2026-03-26 00:57:59 +0000] [78] [INFO] Booting worker with pid: 78 -[2026-03-26 00:57:59 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 00:57:59 +0000] [80] [INFO] Booting worker with pid: 80 -[2026-03-26 00:57:59 +0000] [81] [INFO] Booting worker with pid: 81 -[2026-03-26 00:57:59 +0000] [82] [INFO] Booting worker with pid: 82 -[2026-03-26 00:57:59 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 00:57:59 +0000] [84] [INFO] Booting worker with pid: 84 -[2026-03-26 00:57:59 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 00:57:59 +0000] [86] [INFO] Booting worker with pid: 86 -[2026-03-26 00:57:59 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 00:57:59 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 00:57:59 +0000] [89] [INFO] Booting worker with pid: 89 -[2026-03-26 00:57:59 +0000] [90] [INFO] Booting worker with pid: 90 -[2026-03-26 00:57:59 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 00:57:59 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 00:58:00 +0000] [93] [INFO] Booting worker with pid: 93 -[2026-03-26 00:58:00 +0000] [94] [INFO] Booting worker with pid: 94 -[2026-03-26 00:58:00 +0000] [95] [INFO] Booting worker with pid: 95 -[2026-03-26 00:58:00 +0000] [96] [INFO] Booting worker with pid: 96 -[2026-03-26 00:58:00 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 00:58:00 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 00:58:00 +0000] [99] [INFO] Booting worker with pid: 99 -[2026-03-26 00:58:00 +0000] [100] [INFO] Booting worker with pid: 100 -[2026-03-26 00:58:00 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 00:58:00 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 00:58:00 +0000] [103] [INFO] Booting worker with pid: 103 -[2026-03-26 00:58:00 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 00:58:00 +0000] [105] [INFO] Booting worker with pid: 105 -[2026-03-26 00:58:00 +0000] [106] [INFO] Booting worker with pid: 106 -[2026-03-26 00:58:00 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 00:58:00 +0000] [108] [INFO] Booting worker with pid: 108 -[2026-03-26 00:58:01 +0000] [109] [INFO] Booting worker with pid: 109 -[2026-03-26 00:58:01 +0000] [110] [INFO] Booting worker with pid: 110 -[2026-03-26 00:58:01 +0000] [111] [INFO] Booting worker with pid: 111 -[2026-03-26 00:58:01 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 00:58:01 +0000] [113] [INFO] Booting worker with pid: 113 -[2026-03-26 00:58:01 +0000] [114] [INFO] Booting worker with pid: 114 -[2026-03-26 00:58:01 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 00:58:01 +0000] [116] [INFO] Booting worker with pid: 116 -[2026-03-26 00:58:01 +0000] [117] [INFO] Booting worker with pid: 117 -[2026-03-26 00:58:01 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 00:58:01 +0000] [119] [INFO] Booting worker with pid: 119 -[2026-03-26 00:58:01 +0000] [120] [INFO] Booting worker with pid: 120 -[2026-03-26 00:58:01 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 00:58:01 +0000] [122] [INFO] Booting worker with pid: 122 -[2026-03-26 00:58:01 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 00:58:01 +0000] [124] [INFO] Booting worker with pid: 124 -[2026-03-26 00:58:01 +0000] [125] [INFO] Booting worker with pid: 125 -[2026-03-26 00:58:01 +0000] [126] [INFO] Booting worker with pid: 126 -[2026-03-26 00:58:02 +0000] [127] [INFO] Booting worker with pid: 127 -[2026-03-26 00:58:02 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 00:58:02 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 00:58:02 +0000] [130] [INFO] Booting worker with pid: 130 -[2026-03-26 00:58:02 +0000] [131] [INFO] Booting worker with pid: 131 -[2026-03-26 00:58:02 +0000] [132] [INFO] Booting worker with pid: 132 -[2026-03-26 00:58:02 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 00:58:02 +0000] [134] [INFO] Booting worker with pid: 134 -[2026-03-26 00:58:02 +0000] [135] [INFO] Booting worker with pid: 135 -[2026-03-26 00:58:02 +0000] [136] [INFO] Booting worker with pid: 136 -[2026-03-26 00:58:02 +0000] [137] [INFO] Booting worker with pid: 137 -[2026-03-26 00:58:02 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 00:58:02 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 00:58:02 +0000] [140] [INFO] Booting worker with pid: 140 -[2026-03-26 00:58:02 +0000] [141] [INFO] Booting worker with pid: 141 -[2026-03-26 00:58:02 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 00:58:02 +0000] [143] [INFO] Booting worker with pid: 143 -[2026-03-26 00:58:02 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 00:58:03 +0000] [145] [INFO] Booting worker with pid: 145 -[2026-03-26 00:58:03 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 00:58:03 +0000] [147] [INFO] Booting worker with pid: 147 -[2026-03-26 00:58:03 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 00:58:03 +0000] [149] [INFO] Booting worker with pid: 149 -[2026-03-26 00:58:03 +0000] [150] [INFO] Booting worker with pid: 150 -[2026-03-26 00:58:03 +0000] [151] [INFO] Booting worker with pid: 151 -[2026-03-26 00:58:03 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 00:58:03 +0000] [153] [INFO] Booting worker with pid: 153 -[2026-03-26 00:58:03 +0000] [154] [INFO] Booting worker with pid: 154 -[2026-03-26 00:58:03 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 00:58:03 +0000] [156] [INFO] Booting worker with pid: 156 -[2026-03-26 00:58:03 +0000] [157] [INFO] Booting worker with pid: 157 -[2026-03-26 00:58:03 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 00:58:03 +0000] [159] [INFO] Booting worker with pid: 159 -[2026-03-26 00:58:03 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 00:58:03 +0000] [161] [INFO] Booting worker with pid: 161 -[2026-03-26 00:58:03 +0000] [162] [INFO] Booting worker with pid: 162 -[2026-03-26 00:58:03 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 00:58:04 +0000] [164] [INFO] Booting worker with pid: 164 -[2026-03-26 00:58:04 +0000] [165] [INFO] Booting worker with pid: 165 -[2026-03-26 00:58:04 +0000] [166] [INFO] Booting worker with pid: 166 -[2026-03-26 00:58:04 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 00:58:04 +0000] [168] [INFO] Booting worker with pid: 168 -[2026-03-26 00:58:04 +0000] [169] [INFO] Booting worker with pid: 169 -[2026-03-26 00:58:04 +0000] [170] [INFO] Booting worker with pid: 170 -[2026-03-26 00:58:04 +0000] [171] [INFO] Booting worker with pid: 171 -[2026-03-26 00:58:04 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 00:58:04 +0000] [173] [INFO] Booting worker with pid: 173 -[2026-03-26 00:58:04 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 00:58:04 +0000] [175] [INFO] Booting worker with pid: 175 -[2026-03-26 00:58:04 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 00:58:04 +0000] [177] [INFO] Booting worker with pid: 177 -[2026-03-26 00:58:04 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 00:58:04 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 00:58:04 +0000] [180] [INFO] Booting worker with pid: 180 -[2026-03-26 00:58:04 +0000] [181] [INFO] Booting worker with pid: 181 -[2026-03-26 00:58:04 +0000] [182] [INFO] Booting worker with pid: 182 -[2026-03-26 00:58:04 +0000] [183] [INFO] Booting worker with pid: 183 -[2026-03-26 00:58:04 +0000] [184] [INFO] Booting worker with pid: 184 -[2026-03-26 00:58:05 +0000] [185] [INFO] Booting worker with pid: 185 -[2026-03-26 00:58:05 +0000] [186] [INFO] Booting worker with pid: 186 -[2026-03-26 00:58:05 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 00:58:05 +0000] [188] [INFO] Booting worker with pid: 188 -[2026-03-26 00:58:05 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 00:58:05 +0000] [190] [INFO] Booting worker with pid: 190 -[2026-03-26 00:58:05 +0000] [191] [INFO] Booting worker with pid: 191 -[2026-03-26 00:58:05 +0000] [192] [INFO] Booting worker with pid: 192 -[2026-03-26 00:58:05 +0000] [193] [INFO] Booting worker with pid: 193 -[2026-03-26 00:58:05 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 00:58:05 +0000] [195] [INFO] Booting worker with pid: 195 -[2026-03-26 00:58:05 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 00:58:05 +0000] [197] [INFO] Booting worker with pid: 197 -[2026-03-26 00:58:05 +0000] [198] [INFO] Booting worker with pid: 198 -[2026-03-26 00:58:05 +0000] [199] [INFO] Booting worker with pid: 199 -[2026-03-26 00:58:05 +0000] [200] [INFO] Booting worker with pid: 200 -[2026-03-26 00:58:05 +0000] [201] [INFO] Booting worker with pid: 201 -[2026-03-26 00:58:05 +0000] [202] [INFO] Booting worker with pid: 202 -[2026-03-26 00:58:05 +0000] [203] [INFO] Booting worker with pid: 203 -[2026-03-26 00:58:05 +0000] [204] [INFO] Booting worker with pid: 204 -[2026-03-26 00:58:06 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 00:58:06 +0000] [206] [INFO] Booting worker with pid: 206 -[2026-03-26 00:58:06 +0000] [207] [INFO] Booting worker with pid: 207 -[2026-03-26 00:58:06 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 00:58:06 +0000] [209] [INFO] Booting worker with pid: 209 -[2026-03-26 00:58:06 +0000] [210] [INFO] Booting worker with pid: 210 -[2026-03-26 00:58:06 +0000] [211] [INFO] Booting worker with pid: 211 -[2026-03-26 00:58:06 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 00:58:06 +0000] [213] [INFO] Booting worker with pid: 213 -[2026-03-26 00:58:06 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 00:58:06 +0000] [215] [INFO] Booting worker with pid: 215 -[2026-03-26 00:58:06 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 00:58:06 +0000] [217] [INFO] Booting worker with pid: 217 -[2026-03-26 00:58:06 +0000] [218] [INFO] Booting worker with pid: 218 -[2026-03-26 00:58:06 +0000] [219] [INFO] Booting worker with pid: 219 -[2026-03-26 00:58:06 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 00:58:06 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 00:58:06 +0000] [222] [INFO] Booting worker with pid: 222 -[2026-03-26 00:58:07 +0000] [223] [INFO] Booting worker with pid: 223 -[2026-03-26 00:58:07 +0000] [224] [INFO] Booting worker with pid: 224 -[2026-03-26 00:58:07 +0000] [225] [INFO] Booting worker with pid: 225 -[2026-03-26 00:58:07 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 00:58:07 +0000] [227] [INFO] Booting worker with pid: 227 -[2026-03-26 00:58:07 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 00:58:07 +0000] [229] [INFO] Booting worker with pid: 229 -[2026-03-26 00:58:07 +0000] [230] [INFO] Booting worker with pid: 230 -[2026-03-26 00:58:07 +0000] [231] [INFO] Booting worker with pid: 231 -[2026-03-26 00:58:07 +0000] [232] [INFO] Booting worker with pid: 232 -[2026-03-26 00:58:07 +0000] [233] [INFO] Booting worker with pid: 233 -[2026-03-26 00:58:07 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 00:58:07 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 00:58:07 +0000] [236] [INFO] Booting worker with pid: 236 -[2026-03-26 00:58:07 +0000] [237] [INFO] Booting worker with pid: 237 -[2026-03-26 00:58:07 +0000] [238] [INFO] Booting worker with pid: 238 -[2026-03-26 00:58:07 +0000] [239] [INFO] Booting worker with pid: 239 -[2026-03-26 00:58:07 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 00:58:07 +0000] [241] [INFO] Booting worker with pid: 241 -[2026-03-26 00:58:08 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 00:58:08 +0000] [243] [INFO] Booting worker with pid: 243 -[2026-03-26 00:58:08 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 00:58:08 +0000] [245] [INFO] Booting worker with pid: 245 -[2026-03-26 00:58:08 +0000] [246] [INFO] Booting worker with pid: 246 -[2026-03-26 00:58:08 +0000] [247] [INFO] Booting worker with pid: 247 -[2026-03-26 00:58:08 +0000] [248] [INFO] Booting worker with pid: 248 -[2026-03-26 00:58:08 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 00:58:08 +0000] [250] [INFO] Booting worker with pid: 250 -[2026-03-26 00:58:08 +0000] [251] [INFO] Booting worker with pid: 251 -[2026-03-26 00:58:08 +0000] [252] [INFO] Booting worker with pid: 252 -[2026-03-26 00:58:08 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 00:58:08 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 00:58:08 +0000] [255] [INFO] Booting worker with pid: 255 -[2026-03-26 00:58:08 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 00:58:08 +0000] [257] [INFO] Booting worker with pid: 257 -[2026-03-26 00:58:08 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 00:58:08 +0000] [259] [INFO] Booting worker with pid: 259 -[2026-03-26 00:58:09 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 00:58:09 +0000] [261] [INFO] Booting worker with pid: 261 -[2026-03-26 00:58:09 +0000] [262] [INFO] Booting worker with pid: 262 -Internal Server Error: /upload -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner - response = get_response(request) - File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response - response = wrapped_callback(request, *callback_args, **callback_kwargs) - File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner - return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint - chunk = stream.read(min(65536, remaining)) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read - data = self.reader.read(1024) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read - data = self.unreader.read() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read - d = self.chunk() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk - return self.sock.recv(self.mxchunk) - ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ -ConnectionResetError: [Errno 104] Connection reset by peer -Internal Server Error: /upload -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner - response = get_response(request) - File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response - response = wrapped_callback(request, *callback_args, **callback_kwargs) - File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner - return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint - chunk = stream.read(min(65536, remaining)) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read - data = self.reader.read(1024) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read - data = self.unreader.read() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read - d = self.chunk() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk - return self.sock.recv(self.mxchunk) - ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ -ConnectionResetError: [Errno 104] Connection reset by peer -Internal Server Error: /upload -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/django/core/handlers/exception.py", line 55, in inner - response = get_response(request) - File "/usr/local/lib/python3.13/site-packages/django/core/handlers/base.py", line 197, in _get_response - response = wrapped_callback(request, *callback_args, **callback_kwargs) - File "/usr/local/lib/python3.13/site-packages/django/views/decorators/http.py", line 64, in inner - return func(request, *args, **kwargs) - File "/app/views.py", line 152, in upload_endpoint - chunk = stream.read(min(65536, remaining)) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read - data = self.reader.read(1024) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read - data = self.unreader.read() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read - d = self.chunk() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk - return self.sock.recv(self.mxchunk) - ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ -ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 01:33:04 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 01:33:04 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 01:33:04 +0000] [1] [INFO] Using worker: sync +[2026-03-29 01:33:04 +0000] [7] [INFO] Booting worker with pid: 7 +[2026-03-29 01:33:05 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 01:33:05 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 01:33:05 +0000] [10] [INFO] Booting worker with pid: 10 +[2026-03-29 01:33:05 +0000] [11] [INFO] Booting worker with pid: 11 +[2026-03-29 01:33:05 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 01:33:05 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 01:33:05 +0000] [14] [INFO] Booting worker with pid: 14 +[2026-03-29 01:33:05 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 01:33:05 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 01:33:05 +0000] [17] [INFO] Booting worker with pid: 17 +[2026-03-29 01:33:05 +0000] [18] [INFO] Booting worker with pid: 18 +[2026-03-29 01:33:05 +0000] [19] [INFO] Booting worker with pid: 19 +[2026-03-29 01:33:05 +0000] [20] [INFO] Booting worker with pid: 20 +[2026-03-29 01:33:05 +0000] [21] [INFO] Booting worker with pid: 21 +[2026-03-29 01:33:05 +0000] [22] [INFO] Booting worker with pid: 22 +[2026-03-29 01:33:05 +0000] [23] [INFO] Booting worker with pid: 23 +[2026-03-29 01:33:05 +0000] [24] [INFO] Booting worker with pid: 24 +[2026-03-29 01:33:05 +0000] [25] [INFO] Booting worker with pid: 25 +[2026-03-29 01:33:06 +0000] [26] [INFO] Booting worker with pid: 26 +[2026-03-29 01:33:06 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 01:33:06 +0000] [28] [INFO] Booting worker with pid: 28 +[2026-03-29 01:33:06 +0000] [29] [INFO] Booting worker with pid: 29 +[2026-03-29 01:33:06 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 01:33:06 +0000] [31] [INFO] Booting worker with pid: 31 +[2026-03-29 01:33:06 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 01:33:06 +0000] [33] [INFO] Booting worker with pid: 33 +[2026-03-29 01:33:06 +0000] [34] [INFO] Booting worker with pid: 34 +[2026-03-29 01:33:06 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 01:33:06 +0000] [36] [INFO] Booting worker with pid: 36 +[2026-03-29 01:33:06 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 01:33:06 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 01:33:06 +0000] [39] [INFO] Booting worker with pid: 39 +[2026-03-29 01:33:06 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 01:33:06 +0000] [41] [INFO] Booting worker with pid: 41 +[2026-03-29 01:33:06 +0000] [42] [INFO] Booting worker with pid: 42 +[2026-03-29 01:33:06 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 01:33:07 +0000] [44] [INFO] Booting worker with pid: 44 +[2026-03-29 01:33:07 +0000] [45] [INFO] Booting worker with pid: 45 +[2026-03-29 01:33:07 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 01:33:07 +0000] [47] [INFO] Booting worker with pid: 47 +[2026-03-29 01:33:07 +0000] [48] [INFO] Booting worker with pid: 48 +[2026-03-29 01:33:07 +0000] [49] [INFO] Booting worker with pid: 49 +[2026-03-29 01:33:07 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 01:33:07 +0000] [51] [INFO] Booting worker with pid: 51 +[2026-03-29 01:33:07 +0000] [52] [INFO] Booting worker with pid: 52 +[2026-03-29 01:33:07 +0000] [53] [INFO] Booting worker with pid: 53 +[2026-03-29 01:33:07 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 01:33:07 +0000] [55] [INFO] Booting worker with pid: 55 +[2026-03-29 01:33:07 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 01:33:07 +0000] [57] [INFO] Booting worker with pid: 57 +[2026-03-29 01:33:07 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 01:33:07 +0000] [59] [INFO] Booting worker with pid: 59 +[2026-03-29 01:33:07 +0000] [60] [INFO] Booting worker with pid: 60 +[2026-03-29 01:33:07 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 01:33:07 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 01:33:07 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 01:33:07 +0000] [64] [INFO] Booting worker with pid: 64 +[2026-03-29 01:33:07 +0000] [65] [INFO] Booting worker with pid: 65 +[2026-03-29 01:33:07 +0000] [66] [INFO] Booting worker with pid: 66 +[2026-03-29 01:33:07 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 01:33:07 +0000] [68] [INFO] Booting worker with pid: 68 +[2026-03-29 01:33:07 +0000] [69] [INFO] Booting worker with pid: 69 +[2026-03-29 01:33:08 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 01:33:08 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 01:33:08 +0000] [72] [INFO] Booting worker with pid: 72 +[2026-03-29 01:33:08 +0000] [73] [INFO] Booting worker with pid: 73 +[2026-03-29 01:33:08 +0000] [74] [INFO] Booting worker with pid: 74 +[2026-03-29 01:33:08 +0000] [75] [INFO] Booting worker with pid: 75 +[2026-03-29 01:33:08 +0000] [76] [INFO] Booting worker with pid: 76 +[2026-03-29 01:33:08 +0000] [77] [INFO] Booting worker with pid: 77 +[2026-03-29 01:33:08 +0000] [78] [INFO] Booting worker with pid: 78 +[2026-03-29 01:33:08 +0000] [79] [INFO] Booting worker with pid: 79 +[2026-03-29 01:33:08 +0000] [80] [INFO] Booting worker with pid: 80 +[2026-03-29 01:33:08 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 01:33:08 +0000] [82] [INFO] Booting worker with pid: 82 +[2026-03-29 01:33:08 +0000] [83] [INFO] Booting worker with pid: 83 +[2026-03-29 01:33:08 +0000] [84] [INFO] Booting worker with pid: 84 +[2026-03-29 01:33:08 +0000] [85] [INFO] Booting worker with pid: 85 +[2026-03-29 01:33:08 +0000] [86] [INFO] Booting worker with pid: 86 +[2026-03-29 01:33:08 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 01:33:08 +0000] [88] [INFO] Booting worker with pid: 88 +[2026-03-29 01:33:08 +0000] [89] [INFO] Booting worker with pid: 89 +[2026-03-29 01:33:09 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 01:33:09 +0000] [91] [INFO] Booting worker with pid: 91 +[2026-03-29 01:33:09 +0000] [92] [INFO] Booting worker with pid: 92 +[2026-03-29 01:33:09 +0000] [93] [INFO] Booting worker with pid: 93 +[2026-03-29 01:33:09 +0000] [94] [INFO] Booting worker with pid: 94 +[2026-03-29 01:33:09 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 01:33:09 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 01:33:09 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 01:33:09 +0000] [98] [INFO] Booting worker with pid: 98 +[2026-03-29 01:33:09 +0000] [99] [INFO] Booting worker with pid: 99 +[2026-03-29 01:33:09 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 01:33:09 +0000] [101] [INFO] Booting worker with pid: 101 +[2026-03-29 01:33:09 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 01:33:09 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 01:33:09 +0000] [104] [INFO] Booting worker with pid: 104 +[2026-03-29 01:33:09 +0000] [105] [INFO] Booting worker with pid: 105 +[2026-03-29 01:33:10 +0000] [106] [INFO] Booting worker with pid: 106 +[2026-03-29 01:33:10 +0000] [107] [INFO] Booting worker with pid: 107 +[2026-03-29 01:33:10 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 01:33:10 +0000] [109] [INFO] Booting worker with pid: 109 +[2026-03-29 01:33:10 +0000] [110] [INFO] Booting worker with pid: 110 +[2026-03-29 01:33:10 +0000] [111] [INFO] Booting worker with pid: 111 +[2026-03-29 01:33:10 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 01:33:10 +0000] [113] [INFO] Booting worker with pid: 113 +[2026-03-29 01:33:10 +0000] [114] [INFO] Booting worker with pid: 114 +[2026-03-29 01:33:10 +0000] [115] [INFO] Booting worker with pid: 115 +[2026-03-29 01:33:10 +0000] [116] [INFO] Booting worker with pid: 116 +[2026-03-29 01:33:10 +0000] [117] [INFO] Booting worker with pid: 117 +[2026-03-29 01:33:10 +0000] [118] [INFO] Booting worker with pid: 118 +[2026-03-29 01:33:10 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 01:33:10 +0000] [120] [INFO] Booting worker with pid: 120 +[2026-03-29 01:33:10 +0000] [121] [INFO] Booting worker with pid: 121 +[2026-03-29 01:33:10 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 01:33:10 +0000] [123] [INFO] Booting worker with pid: 123 +[2026-03-29 01:33:10 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 01:33:10 +0000] [125] [INFO] Booting worker with pid: 125 +[2026-03-29 01:33:11 +0000] [126] [INFO] Booting worker with pid: 126 +[2026-03-29 01:33:11 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 01:33:11 +0000] [128] [INFO] Booting worker with pid: 128 +[2026-03-29 01:33:11 +0000] [129] [INFO] Booting worker with pid: 129 +[2026-03-29 01:33:11 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 01:33:11 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 01:33:11 +0000] [132] [INFO] Booting worker with pid: 132 +[2026-03-29 01:33:11 +0000] [133] [INFO] Booting worker with pid: 133 +[2026-03-29 01:33:11 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 01:33:11 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 01:33:11 +0000] [136] [INFO] Booting worker with pid: 136 +[2026-03-29 01:33:11 +0000] [137] [INFO] Booting worker with pid: 137 +[2026-03-29 01:33:11 +0000] [138] [INFO] Booting worker with pid: 138 +[2026-03-29 01:33:11 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 01:33:11 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 01:33:11 +0000] [141] [INFO] Booting worker with pid: 141 +[2026-03-29 01:33:11 +0000] [142] [INFO] Booting worker with pid: 142 +[2026-03-29 01:33:11 +0000] [143] [INFO] Booting worker with pid: 143 +[2026-03-29 01:33:11 +0000] [144] [INFO] Booting worker with pid: 144 +[2026-03-29 01:33:12 +0000] [145] [INFO] Booting worker with pid: 145 +[2026-03-29 01:33:12 +0000] [146] [INFO] Booting worker with pid: 146 +[2026-03-29 01:33:12 +0000] [147] [INFO] Booting worker with pid: 147 +[2026-03-29 01:33:12 +0000] [148] [INFO] Booting worker with pid: 148 +[2026-03-29 01:33:12 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 01:33:12 +0000] [150] [INFO] Booting worker with pid: 150 +[2026-03-29 01:33:12 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 01:33:12 +0000] [152] [INFO] Booting worker with pid: 152 +[2026-03-29 01:33:12 +0000] [153] [INFO] Booting worker with pid: 153 +[2026-03-29 01:33:12 +0000] [154] [INFO] Booting worker with pid: 154 +[2026-03-29 01:33:12 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 01:33:12 +0000] [156] [INFO] Booting worker with pid: 156 +[2026-03-29 01:33:12 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 01:33:13 +0000] [158] [INFO] Booting worker with pid: 158 +[2026-03-29 01:33:13 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 01:33:13 +0000] [160] [INFO] Booting worker with pid: 160 +[2026-03-29 01:33:13 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 01:33:13 +0000] [162] [INFO] Booting worker with pid: 162 +[2026-03-29 01:33:13 +0000] [163] [INFO] Booting worker with pid: 163 +[2026-03-29 01:33:13 +0000] [164] [INFO] Booting worker with pid: 164 +[2026-03-29 01:33:13 +0000] [165] [INFO] Booting worker with pid: 165 +[2026-03-29 01:33:13 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 01:33:13 +0000] [167] [INFO] Booting worker with pid: 167 +[2026-03-29 01:33:13 +0000] [168] [INFO] Booting worker with pid: 168 +[2026-03-29 01:33:13 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 01:33:13 +0000] [170] [INFO] Booting worker with pid: 170 +[2026-03-29 01:33:13 +0000] [171] [INFO] Booting worker with pid: 171 +[2026-03-29 01:33:13 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 01:33:13 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 01:33:13 +0000] [174] [INFO] Booting worker with pid: 174 +[2026-03-29 01:33:13 +0000] [175] [INFO] Booting worker with pid: 175 +[2026-03-29 01:33:13 +0000] [176] [INFO] Booting worker with pid: 176 +[2026-03-29 01:33:14 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 01:33:14 +0000] [178] [INFO] Booting worker with pid: 178 +[2026-03-29 01:33:14 +0000] [179] [INFO] Booting worker with pid: 179 +[2026-03-29 01:33:14 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 01:33:14 +0000] [181] [INFO] Booting worker with pid: 181 +[2026-03-29 01:33:14 +0000] [182] [INFO] Booting worker with pid: 182 +[2026-03-29 01:33:14 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 01:33:14 +0000] [184] [INFO] Booting worker with pid: 184 +[2026-03-29 01:33:14 +0000] [185] [INFO] Booting worker with pid: 185 +[2026-03-29 01:33:14 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 01:33:14 +0000] [187] [INFO] Booting worker with pid: 187 +[2026-03-29 01:33:14 +0000] [188] [INFO] Booting worker with pid: 188 +[2026-03-29 01:33:14 +0000] [189] [INFO] Booting worker with pid: 189 +[2026-03-29 01:33:14 +0000] [190] [INFO] Booting worker with pid: 190 +[2026-03-29 01:33:14 +0000] [191] [INFO] Booting worker with pid: 191 +[2026-03-29 01:33:14 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 01:33:14 +0000] [193] [INFO] Booting worker with pid: 193 +[2026-03-29 01:33:14 +0000] [194] [INFO] Booting worker with pid: 194 +[2026-03-29 01:33:15 +0000] [195] [INFO] Booting worker with pid: 195 +[2026-03-29 01:33:15 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 01:33:15 +0000] [197] [INFO] Booting worker with pid: 197 +[2026-03-29 01:33:15 +0000] [198] [INFO] Booting worker with pid: 198 +[2026-03-29 01:33:15 +0000] [199] [INFO] Booting worker with pid: 199 +[2026-03-29 01:33:15 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 01:33:15 +0000] [201] [INFO] Booting worker with pid: 201 +[2026-03-29 01:33:15 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 01:33:15 +0000] [203] [INFO] Booting worker with pid: 203 +[2026-03-29 01:33:15 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 01:33:15 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 01:33:15 +0000] [206] [INFO] Booting worker with pid: 206 +[2026-03-29 01:33:15 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 01:33:15 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 01:33:15 +0000] [209] [INFO] Booting worker with pid: 209 +[2026-03-29 01:33:16 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 01:33:16 +0000] [211] [INFO] Booting worker with pid: 211 +[2026-03-29 01:33:16 +0000] [212] [INFO] Booting worker with pid: 212 +[2026-03-29 01:33:16 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 01:33:16 +0000] [214] [INFO] Booting worker with pid: 214 +[2026-03-29 01:33:16 +0000] [215] [INFO] Booting worker with pid: 215 +[2026-03-29 01:33:16 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 01:33:16 +0000] [217] [INFO] Booting worker with pid: 217 +[2026-03-29 01:33:16 +0000] [218] [INFO] Booting worker with pid: 218 +[2026-03-29 01:33:16 +0000] [219] [INFO] Booting worker with pid: 219 +[2026-03-29 01:33:16 +0000] [220] [INFO] Booting worker with pid: 220 +[2026-03-29 01:33:16 +0000] [221] [INFO] Booting worker with pid: 221 +[2026-03-29 01:33:16 +0000] [222] [INFO] Booting worker with pid: 222 +[2026-03-29 01:33:16 +0000] [223] [INFO] Booting worker with pid: 223 +[2026-03-29 01:33:16 +0000] [224] [INFO] Booting worker with pid: 224 +[2026-03-29 01:33:16 +0000] [225] [INFO] Booting worker with pid: 225 +[2026-03-29 01:33:16 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 01:33:16 +0000] [227] [INFO] Booting worker with pid: 227 +[2026-03-29 01:33:16 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 01:33:17 +0000] [229] [INFO] Booting worker with pid: 229 +[2026-03-29 01:33:17 +0000] [230] [INFO] Booting worker with pid: 230 +[2026-03-29 01:33:17 +0000] [231] [INFO] Booting worker with pid: 231 +[2026-03-29 01:33:17 +0000] [232] [INFO] Booting worker with pid: 232 +[2026-03-29 01:33:17 +0000] [233] [INFO] Booting worker with pid: 233 +[2026-03-29 01:33:17 +0000] [234] [INFO] Booting worker with pid: 234 +[2026-03-29 01:33:17 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 01:33:17 +0000] [236] [INFO] Booting worker with pid: 236 +[2026-03-29 01:33:17 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 01:33:17 +0000] [238] [INFO] Booting worker with pid: 238 +[2026-03-29 01:33:17 +0000] [239] [INFO] Booting worker with pid: 239 +[2026-03-29 01:33:17 +0000] [240] [INFO] Booting worker with pid: 240 +[2026-03-29 01:33:17 +0000] [241] [INFO] Booting worker with pid: 241 +[2026-03-29 01:33:17 +0000] [242] [INFO] Booting worker with pid: 242 +[2026-03-29 01:33:17 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 01:33:18 +0000] [244] [INFO] Booting worker with pid: 244 +[2026-03-29 01:33:18 +0000] [245] [INFO] Booting worker with pid: 245 +[2026-03-29 01:33:18 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 01:33:18 +0000] [247] [INFO] Booting worker with pid: 247 +[2026-03-29 01:33:18 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 01:33:18 +0000] [249] [INFO] Booting worker with pid: 249 +[2026-03-29 01:33:18 +0000] [250] [INFO] Booting worker with pid: 250 +[2026-03-29 01:33:18 +0000] [251] [INFO] Booting worker with pid: 251 +[2026-03-29 01:33:18 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 01:33:18 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 01:33:18 +0000] [254] [INFO] Booting worker with pid: 254 +[2026-03-29 01:33:18 +0000] [255] [INFO] Booting worker with pid: 255 +[2026-03-29 01:33:18 +0000] [256] [INFO] Booting worker with pid: 256 +[2026-03-29 01:33:18 +0000] [257] [INFO] Booting worker with pid: 257 +[2026-03-29 01:33:18 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 01:33:18 +0000] [259] [INFO] Booting worker with pid: 259 +[2026-03-29 01:33:19 +0000] [260] [INFO] Booting worker with pid: 260 +[2026-03-29 01:33:19 +0000] [261] [INFO] Booting worker with pid: 261 +[2026-03-29 01:33:19 +0000] [262] [INFO] Booting worker with pid: 262 diff --git a/site/static/logs/mixed/4096/fastapi.log b/site/static/logs/mixed/4096/fastapi.log index f379eb3b..70aba3dc 100644 --- a/site/static/logs/mixed/4096/fastapi.log +++ b/site/static/logs/mixed/4096/fastapi.log @@ -1,1022 +1,997 @@ -[2026-03-26 01:08:56 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 01:08:56 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 01:08:56 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker -[2026-03-26 01:08:56 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 01:08:56 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 01:08:56 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 01:08:56 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 01:08:56 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 01:08:56 +0000] [12] [INFO] Booting worker with pid: 12 -[2026-03-26 01:08:56 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 01:08:56 +0000] [14] [INFO] Booting worker with pid: 14 -[2026-03-26 01:08:56 +0000] [18] [INFO] Booting worker with pid: 18 -[2026-03-26 01:08:56 +0000] [8] [INFO] Started server process [8] -[2026-03-26 01:08:56 +0000] [7] [INFO] Started server process [7] -[2026-03-26 01:08:56 +0000] [8] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [7] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [9] [INFO] Started server process [9] -[2026-03-26 01:08:56 +0000] [9] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [8] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [7] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [9] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [10] [INFO] Started server process [10] -[2026-03-26 01:08:56 +0000] [10] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [10] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [20] [INFO] Booting worker with pid: 20 -[2026-03-26 01:08:56 +0000] [11] [INFO] Started server process [11] -[2026-03-26 01:08:56 +0000] [11] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [11] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [12] [INFO] Started server process [12] -[2026-03-26 01:08:56 +0000] [12] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [12] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [13] [INFO] Started server process [13] -[2026-03-26 01:08:56 +0000] [13] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [13] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [24] [INFO] Booting worker with pid: 24 -[2026-03-26 01:08:56 +0000] [14] [INFO] Started server process [14] -[2026-03-26 01:08:56 +0000] [14] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [14] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [26] [INFO] Booting worker with pid: 26 -[2026-03-26 01:08:56 +0000] [18] [INFO] Started server process [18] -[2026-03-26 01:08:56 +0000] [18] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [18] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 01:08:56 +0000] [29] [INFO] Booting worker with pid: 29 -[2026-03-26 01:08:56 +0000] [20] [INFO] Started server process [20] -[2026-03-26 01:08:56 +0000] [20] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [20] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 01:08:56 +0000] [24] [INFO] Started server process [24] -[2026-03-26 01:08:56 +0000] [24] [INFO] Waiting for application startup. -[2026-03-26 01:08:56 +0000] [24] [INFO] Application startup complete. -[2026-03-26 01:08:56 +0000] [33] [INFO] Booting worker with pid: 33 -[2026-03-26 01:08:57 +0000] [26] [INFO] Started server process [26] -[2026-03-26 01:08:57 +0000] [26] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [26] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [35] [INFO] Booting worker with pid: 35 -[2026-03-26 01:08:57 +0000] [28] [INFO] Started server process [28] -[2026-03-26 01:08:57 +0000] [28] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [28] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [29] [INFO] Started server process [29] -[2026-03-26 01:08:57 +0000] [29] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [29] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [38] [INFO] Booting worker with pid: 38 -[2026-03-26 01:08:57 +0000] [31] [INFO] Started server process [31] -[2026-03-26 01:08:57 +0000] [31] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [31] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [33] [INFO] Started server process [33] -[2026-03-26 01:08:57 +0000] [33] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [33] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 01:08:57 +0000] [42] [INFO] Booting worker with pid: 42 -[2026-03-26 01:08:57 +0000] [35] [INFO] Started server process [35] -[2026-03-26 01:08:57 +0000] [35] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [35] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [44] [INFO] Booting worker with pid: 44 -[2026-03-26 01:08:57 +0000] [46] [INFO] Booting worker with pid: 46 -[2026-03-26 01:08:57 +0000] [38] [INFO] Started server process [38] -[2026-03-26 01:08:57 +0000] [38] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [38] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 01:08:57 +0000] [41] [INFO] Started server process [41] -[2026-03-26 01:08:57 +0000] [41] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [41] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [42] [INFO] Started server process [42] -[2026-03-26 01:08:57 +0000] [42] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [42] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 01:08:57 +0000] [44] [INFO] Started server process [44] -[2026-03-26 01:08:57 +0000] [44] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [44] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [46] [INFO] Started server process [46] -[2026-03-26 01:08:57 +0000] [46] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [46] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 01:08:57 +0000] [55] [INFO] Booting worker with pid: 55 -[2026-03-26 01:08:57 +0000] [47] [INFO] Started server process [47] -[2026-03-26 01:08:57 +0000] [47] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [47] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [56] [INFO] Booting worker with pid: 56 -[2026-03-26 01:08:57 +0000] [50] [INFO] Started server process [50] -[2026-03-26 01:08:57 +0000] [50] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [50] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 01:08:57 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 01:08:57 +0000] [53] [INFO] Started server process [53] -[2026-03-26 01:08:57 +0000] [53] [INFO] Waiting for application startup. -[2026-03-26 01:08:57 +0000] [53] [INFO] Application startup complete. -[2026-03-26 01:08:57 +0000] [61] [INFO] Booting worker with pid: 61 -[2026-03-26 01:08:58 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 01:08:58 +0000] [55] [INFO] Started server process [55] -[2026-03-26 01:08:58 +0000] [55] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [55] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [65] [INFO] Booting worker with pid: 65 -[2026-03-26 01:08:58 +0000] [56] [INFO] Started server process [56] -[2026-03-26 01:08:58 +0000] [56] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [56] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [58] [INFO] Started server process [58] -[2026-03-26 01:08:58 +0000] [58] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [58] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [59] [INFO] Started server process [59] -[2026-03-26 01:08:58 +0000] [59] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [59] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 01:08:58 +0000] [69] [INFO] Booting worker with pid: 69 -[2026-03-26 01:08:58 +0000] [61] [INFO] Started server process [61] -[2026-03-26 01:08:58 +0000] [61] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [61] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 01:08:58 +0000] [72] [INFO] Booting worker with pid: 72 -[2026-03-26 01:08:58 +0000] [63] [INFO] Started server process [63] -[2026-03-26 01:08:58 +0000] [63] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [63] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 01:08:58 +0000] [65] [INFO] Started server process [65] -[2026-03-26 01:08:58 +0000] [65] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [65] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [76] [INFO] Booting worker with pid: 76 -[2026-03-26 01:08:58 +0000] [68] [INFO] Started server process [68] -[2026-03-26 01:08:58 +0000] [68] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [68] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [69] [INFO] Started server process [69] -[2026-03-26 01:08:58 +0000] [69] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [69] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 01:08:58 +0000] [80] [INFO] Booting worker with pid: 80 -[2026-03-26 01:08:58 +0000] [71] [INFO] Started server process [71] -[2026-03-26 01:08:58 +0000] [71] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [71] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [72] [INFO] Started server process [72] -[2026-03-26 01:08:58 +0000] [72] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [72] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 01:08:58 +0000] [74] [INFO] Started server process [74] -[2026-03-26 01:08:58 +0000] [74] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [74] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 01:08:58 +0000] [76] [INFO] Started server process [76] -[2026-03-26 01:08:58 +0000] [76] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [76] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 01:08:58 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 01:08:58 +0000] [79] [INFO] Started server process [79] -[2026-03-26 01:08:58 +0000] [79] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [79] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 01:08:58 +0000] [80] [INFO] Started server process [80] -[2026-03-26 01:08:58 +0000] [80] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [80] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 01:08:58 +0000] [94] [INFO] Booting worker with pid: 94 -[2026-03-26 01:08:58 +0000] [83] [INFO] Started server process [83] -[2026-03-26 01:08:58 +0000] [83] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [83] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [95] [INFO] Booting worker with pid: 95 -[2026-03-26 01:08:58 +0000] [96] [INFO] Booting worker with pid: 96 -[2026-03-26 01:08:58 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 01:08:58 +0000] [85] [INFO] Started server process [85] -[2026-03-26 01:08:58 +0000] [85] [INFO] Waiting for application startup. -[2026-03-26 01:08:58 +0000] [85] [INFO] Application startup complete. -[2026-03-26 01:08:58 +0000] [99] [INFO] Booting worker with pid: 99 -[2026-03-26 01:08:59 +0000] [100] [INFO] Booting worker with pid: 100 -[2026-03-26 01:08:59 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 01:08:59 +0000] [88] [INFO] Started server process [88] -[2026-03-26 01:08:59 +0000] [88] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [88] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [87] [INFO] Started server process [87] -[2026-03-26 01:08:59 +0000] [87] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [87] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 01:08:59 +0000] [91] [INFO] Started server process [91] -[2026-03-26 01:08:59 +0000] [91] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [91] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [92] [INFO] Started server process [92] -[2026-03-26 01:08:59 +0000] [92] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [92] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 01:08:59 +0000] [94] [INFO] Started server process [94] -[2026-03-26 01:08:59 +0000] [94] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [94] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [96] [INFO] Started server process [96] -[2026-03-26 01:08:59 +0000] [96] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [96] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [95] [INFO] Started server process [95] -[2026-03-26 01:08:59 +0000] [95] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [95] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [97] [INFO] Started server process [97] -[2026-03-26 01:08:59 +0000] [97] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [97] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 01:08:59 +0000] [113] [INFO] Booting worker with pid: 113 -[2026-03-26 01:08:59 +0000] [99] [INFO] Started server process [99] -[2026-03-26 01:08:59 +0000] [99] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [99] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 01:08:59 +0000] [100] [INFO] Started server process [100] -[2026-03-26 01:08:59 +0000] [100] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [100] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [101] [INFO] Started server process [101] -[2026-03-26 01:08:59 +0000] [101] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [101] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 01:08:59 +0000] [120] [INFO] Booting worker with pid: 120 -[2026-03-26 01:08:59 +0000] [104] [INFO] Started server process [104] -[2026-03-26 01:08:59 +0000] [104] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [104] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 01:08:59 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 01:08:59 +0000] [107] [INFO] Started server process [107] -[2026-03-26 01:08:59 +0000] [107] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [107] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [124] [INFO] Booting worker with pid: 124 -[2026-03-26 01:08:59 +0000] [112] [INFO] Started server process [112] -[2026-03-26 01:08:59 +0000] [112] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [112] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [113] [INFO] Started server process [113] -[2026-03-26 01:08:59 +0000] [113] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [113] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 01:08:59 +0000] [115] [INFO] Started server process [115] -[2026-03-26 01:08:59 +0000] [115] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [115] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 01:08:59 +0000] [118] [INFO] Started server process [118] -[2026-03-26 01:08:59 +0000] [118] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [118] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [120] [INFO] Started server process [120] -[2026-03-26 01:08:59 +0000] [120] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [120] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [132] [INFO] Booting worker with pid: 132 -[2026-03-26 01:08:59 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 01:08:59 +0000] [121] [INFO] Started server process [121] -[2026-03-26 01:08:59 +0000] [121] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [121] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [123] [INFO] Started server process [123] -[2026-03-26 01:08:59 +0000] [123] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [123] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [136] [INFO] Booting worker with pid: 136 -[2026-03-26 01:08:59 +0000] [124] [INFO] Started server process [124] -[2026-03-26 01:08:59 +0000] [124] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [124] [INFO] Application startup complete. -[2026-03-26 01:08:59 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 01:08:59 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 01:08:59 +0000] [140] [INFO] Booting worker with pid: 140 -[2026-03-26 01:08:59 +0000] [128] [INFO] Started server process [128] -[2026-03-26 01:08:59 +0000] [128] [INFO] Waiting for application startup. -[2026-03-26 01:08:59 +0000] [128] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 01:09:00 +0000] [143] [INFO] Booting worker with pid: 143 -[2026-03-26 01:09:00 +0000] [129] [INFO] Started server process [129] -[2026-03-26 01:09:00 +0000] [129] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [129] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 01:09:00 +0000] [132] [INFO] Started server process [132] -[2026-03-26 01:09:00 +0000] [132] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [132] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [133] [INFO] Started server process [133] -[2026-03-26 01:09:00 +0000] [133] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [133] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 01:09:00 +0000] [139] [INFO] Started server process [139] -[2026-03-26 01:09:00 +0000] [139] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [139] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [136] [INFO] Started server process [136] -[2026-03-26 01:09:00 +0000] [136] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [136] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 01:09:00 +0000] [138] [INFO] Started server process [138] -[2026-03-26 01:09:00 +0000] [138] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [138] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [140] [INFO] Started server process [140] -[2026-03-26 01:09:00 +0000] [140] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [140] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [154] [INFO] Booting worker with pid: 154 -[2026-03-26 01:09:00 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 01:09:00 +0000] [156] [INFO] Booting worker with pid: 156 -[2026-03-26 01:09:00 +0000] [142] [INFO] Started server process [142] -[2026-03-26 01:09:00 +0000] [142] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [142] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 01:09:00 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 01:09:00 +0000] [143] [INFO] Started server process [143] -[2026-03-26 01:09:00 +0000] [143] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [143] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [161] [INFO] Booting worker with pid: 161 -[2026-03-26 01:09:00 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 01:09:00 +0000] [146] [INFO] Started server process [146] -[2026-03-26 01:09:00 +0000] [146] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [146] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [164] [INFO] Booting worker with pid: 164 -[2026-03-26 01:09:00 +0000] [165] [INFO] Booting worker with pid: 165 -[2026-03-26 01:09:00 +0000] [148] [INFO] Started server process [148] -[2026-03-26 01:09:00 +0000] [148] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [148] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 01:09:00 +0000] [152] [INFO] Started server process [152] -[2026-03-26 01:09:00 +0000] [152] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [152] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [169] [INFO] Booting worker with pid: 169 -[2026-03-26 01:09:00 +0000] [154] [INFO] Started server process [154] -[2026-03-26 01:09:00 +0000] [154] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [154] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [156] [INFO] Started server process [156] -[2026-03-26 01:09:00 +0000] [156] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [156] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [173] [INFO] Booting worker with pid: 173 -[2026-03-26 01:09:00 +0000] [155] [INFO] Started server process [155] -[2026-03-26 01:09:00 +0000] [155] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [155] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [160] [INFO] Started server process [160] -[2026-03-26 01:09:00 +0000] [160] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [160] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [158] [INFO] Started server process [158] -[2026-03-26 01:09:00 +0000] [158] [INFO] Waiting for application startup. -[2026-03-26 01:09:00 +0000] [158] [INFO] Application startup complete. -[2026-03-26 01:09:00 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 01:09:00 +0000] [177] [INFO] Booting worker with pid: 177 -[2026-03-26 01:09:01 +0000] [161] [INFO] Started server process [161] -[2026-03-26 01:09:01 +0000] [161] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [161] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 01:09:01 +0000] [163] [INFO] Started server process [163] -[2026-03-26 01:09:01 +0000] [163] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [163] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [164] [INFO] Started server process [164] -[2026-03-26 01:09:01 +0000] [164] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [164] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [165] [INFO] Started server process [165] -[2026-03-26 01:09:01 +0000] [183] [INFO] Booting worker with pid: 183 -[2026-03-26 01:09:01 +0000] [165] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [165] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [184] [INFO] Booting worker with pid: 184 -[2026-03-26 01:09:01 +0000] [167] [INFO] Started server process [167] -[2026-03-26 01:09:01 +0000] [167] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [167] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [186] [INFO] Booting worker with pid: 186 -[2026-03-26 01:09:01 +0000] [169] [INFO] Started server process [169] -[2026-03-26 01:09:01 +0000] [169] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [169] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [188] [INFO] Booting worker with pid: 188 -[2026-03-26 01:09:01 +0000] [173] [INFO] Started server process [173] -[2026-03-26 01:09:01 +0000] [173] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [173] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [190] [INFO] Booting worker with pid: 190 -[2026-03-26 01:09:01 +0000] [192] [INFO] Booting worker with pid: 192 -[2026-03-26 01:09:01 +0000] [176] [INFO] Started server process [176] -[2026-03-26 01:09:01 +0000] [176] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [176] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [177] [INFO] Started server process [177] -[2026-03-26 01:09:01 +0000] [177] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [177] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 01:09:01 +0000] [195] [INFO] Booting worker with pid: 195 -[2026-03-26 01:09:01 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 01:09:01 +0000] [197] [INFO] Booting worker with pid: 197 -[2026-03-26 01:09:01 +0000] [179] [INFO] Started server process [179] -[2026-03-26 01:09:01 +0000] [179] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [179] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [199] [INFO] Booting worker with pid: 199 -[2026-03-26 01:09:01 +0000] [200] [INFO] Booting worker with pid: 200 -[2026-03-26 01:09:01 +0000] [203] [INFO] Booting worker with pid: 203 -[2026-03-26 01:09:01 +0000] [204] [INFO] Booting worker with pid: 204 -[2026-03-26 01:09:01 +0000] [184] [INFO] Started server process [184] -[2026-03-26 01:09:01 +0000] [184] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [184] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [183] [INFO] Started server process [183] -[2026-03-26 01:09:01 +0000] [183] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [183] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 01:09:01 +0000] [207] [INFO] Booting worker with pid: 207 -[2026-03-26 01:09:01 +0000] [186] [INFO] Started server process [186] -[2026-03-26 01:09:01 +0000] [186] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [186] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 01:09:01 +0000] [190] [INFO] Started server process [190] -[2026-03-26 01:09:01 +0000] [190] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [190] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [188] [INFO] Started server process [188] -[2026-03-26 01:09:01 +0000] [188] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [188] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 01:09:01 +0000] [194] [INFO] Started server process [194] -[2026-03-26 01:09:01 +0000] [194] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [194] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [192] [INFO] Started server process [192] -[2026-03-26 01:09:01 +0000] [192] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [192] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 01:09:01 +0000] [195] [INFO] Started server process [195] -[2026-03-26 01:09:01 +0000] [195] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [195] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [217] [INFO] Booting worker with pid: 217 -[2026-03-26 01:09:01 +0000] [197] [INFO] Started server process [197] -[2026-03-26 01:09:01 +0000] [197] [INFO] Waiting for application startup. -[2026-03-26 01:09:01 +0000] [197] [INFO] Application startup complete. -[2026-03-26 01:09:01 +0000] [219] [INFO] Booting worker with pid: 219 -[2026-03-26 01:09:01 +0000] [196] [INFO] Started server process [196] -[2026-03-26 01:09:01 +0000] [196] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [196] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 01:09:02 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 01:09:02 +0000] [200] [INFO] Started server process [200] -[2026-03-26 01:09:02 +0000] [200] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [224] [INFO] Booting worker with pid: 224 -[2026-03-26 01:09:02 +0000] [200] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [199] [INFO] Started server process [199] -[2026-03-26 01:09:02 +0000] [199] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [199] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 01:09:02 +0000] [205] [INFO] Started server process [205] -[2026-03-26 01:09:02 +0000] [205] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [205] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [203] [INFO] Started server process [203] -[2026-03-26 01:09:02 +0000] [203] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [203] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [204] [INFO] Started server process [204] -[2026-03-26 01:09:02 +0000] [204] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [204] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [229] [INFO] Booting worker with pid: 229 -[2026-03-26 01:09:02 +0000] [232] [INFO] Booting worker with pid: 232 -[2026-03-26 01:09:02 +0000] [207] [INFO] Started server process [207] -[2026-03-26 01:09:02 +0000] [207] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [207] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [233] [INFO] Booting worker with pid: 233 -[2026-03-26 01:09:02 +0000] [208] [INFO] Started server process [208] -[2026-03-26 01:09:02 +0000] [208] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [208] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [212] [INFO] Started server process [212] -[2026-03-26 01:09:02 +0000] [212] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [212] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 01:09:02 +0000] [214] [INFO] Started server process [214] -[2026-03-26 01:09:02 +0000] [214] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [214] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [237] [INFO] Booting worker with pid: 237 -[2026-03-26 01:09:02 +0000] [217] [INFO] Started server process [217] -[2026-03-26 01:09:02 +0000] [217] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [217] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [219] [INFO] Started server process [219] -[2026-03-26 01:09:02 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 01:09:02 +0000] [219] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [219] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 01:09:02 +0000] [220] [INFO] Started server process [220] -[2026-03-26 01:09:02 +0000] [220] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [220] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [221] [INFO] Started server process [221] -[2026-03-26 01:09:02 +0000] [221] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [221] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 01:09:02 +0000] [224] [INFO] Started server process [224] -[2026-03-26 01:09:02 +0000] [224] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [224] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [226] [INFO] Started server process [226] -[2026-03-26 01:09:02 +0000] [226] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [226] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [247] [INFO] Booting worker with pid: 247 -[2026-03-26 01:09:02 +0000] [229] [INFO] Started server process [229] -[2026-03-26 01:09:02 +0000] [229] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [229] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 01:09:02 +0000] [250] [INFO] Booting worker with pid: 250 -[2026-03-26 01:09:02 +0000] [232] [INFO] Started server process [232] -[2026-03-26 01:09:02 +0000] [232] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [232] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [233] [INFO] Started server process [233] -[2026-03-26 01:09:02 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 01:09:02 +0000] [233] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [233] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 01:09:02 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 01:09:02 +0000] [235] [INFO] Started server process [235] -[2026-03-26 01:09:02 +0000] [235] [INFO] Waiting for application startup. -[2026-03-26 01:09:02 +0000] [235] [INFO] Application startup complete. -[2026-03-26 01:09:02 +0000] [257] [INFO] Booting worker with pid: 257 -[2026-03-26 01:09:02 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 01:09:03 +0000] [242] [INFO] Started server process [242] -[2026-03-26 01:09:03 +0000] [242] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [242] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 01:09:03 +0000] [264] [INFO] Booting worker with pid: 264 -[2026-03-26 01:09:03 +0000] [240] [INFO] Started server process [240] -[2026-03-26 01:09:03 +0000] [240] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [240] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [237] [INFO] Started server process [237] -[2026-03-26 01:09:03 +0000] [237] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [237] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [244] [INFO] Started server process [244] -[2026-03-26 01:09:03 +0000] [244] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [244] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [247] [INFO] Started server process [247] -[2026-03-26 01:09:03 +0000] [247] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [247] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [266] [INFO] Booting worker with pid: 266 -[2026-03-26 01:09:03 +0000] [267] [INFO] Booting worker with pid: 267 -[2026-03-26 01:09:03 +0000] [268] [INFO] Booting worker with pid: 268 -[2026-03-26 01:09:03 +0000] [250] [INFO] Started server process [250] -[2026-03-26 01:09:03 +0000] [250] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [250] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [249] [INFO] Started server process [249] -[2026-03-26 01:09:03 +0000] [249] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [249] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [271] [INFO] Booting worker with pid: 271 -[2026-03-26 01:09:03 +0000] [273] [INFO] Booting worker with pid: 273 -[2026-03-26 01:09:03 +0000] [256] [INFO] Started server process [256] -[2026-03-26 01:09:03 +0000] [256] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [256] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [274] [INFO] Booting worker with pid: 274 -[2026-03-26 01:09:03 +0000] [275] [INFO] Booting worker with pid: 275 -[2026-03-26 01:09:03 +0000] [253] [INFO] Started server process [253] -[2026-03-26 01:09:03 +0000] [253] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [253] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [277] [INFO] Booting worker with pid: 277 -[2026-03-26 01:09:03 +0000] [258] [INFO] Started server process [258] -[2026-03-26 01:09:03 +0000] [258] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [258] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [280] [INFO] Booting worker with pid: 280 -[2026-03-26 01:09:03 +0000] [254] [INFO] Started server process [254] -[2026-03-26 01:09:03 +0000] [254] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [254] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [281] [INFO] Booting worker with pid: 281 -[2026-03-26 01:09:03 +0000] [283] [INFO] Booting worker with pid: 283 -[2026-03-26 01:09:03 +0000] [257] [INFO] Started server process [257] -[2026-03-26 01:09:03 +0000] [257] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [257] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [260] [INFO] Started server process [260] -[2026-03-26 01:09:03 +0000] [260] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [260] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [285] [INFO] Booting worker with pid: 285 -[2026-03-26 01:09:03 +0000] [288] [INFO] Booting worker with pid: 288 -[2026-03-26 01:09:03 +0000] [264] [INFO] Started server process [264] -[2026-03-26 01:09:03 +0000] [264] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [264] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [266] [INFO] Started server process [266] -[2026-03-26 01:09:03 +0000] [266] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [266] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [291] [INFO] Booting worker with pid: 291 -[2026-03-26 01:09:03 +0000] [271] [INFO] Started server process [271] -[2026-03-26 01:09:03 +0000] [271] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [271] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [267] [INFO] Started server process [267] -[2026-03-26 01:09:03 +0000] [267] [INFO] Waiting for application startup. -[2026-03-26 01:09:03 +0000] [267] [INFO] Application startup complete. -[2026-03-26 01:09:03 +0000] [292] [INFO] Booting worker with pid: 292 -[2026-03-26 01:09:03 +0000] [293] [INFO] Booting worker with pid: 293 -[2026-03-26 01:09:04 +0000] [294] [INFO] Booting worker with pid: 294 -[2026-03-26 01:09:04 +0000] [275] [INFO] Started server process [275] -[2026-03-26 01:09:04 +0000] [275] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [275] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [277] [INFO] Started server process [277] -[2026-03-26 01:09:04 +0000] [277] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [299] [INFO] Booting worker with pid: 299 -[2026-03-26 01:09:04 +0000] [277] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [274] [INFO] Started server process [274] -[2026-03-26 01:09:04 +0000] [274] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [274] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [268] [INFO] Started server process [268] -[2026-03-26 01:09:04 +0000] [268] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [268] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [301] [INFO] Booting worker with pid: 301 -[2026-03-26 01:09:04 +0000] [273] [INFO] Started server process [273] -[2026-03-26 01:09:04 +0000] [273] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [273] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [303] [INFO] Booting worker with pid: 303 -[2026-03-26 01:09:04 +0000] [281] [INFO] Started server process [281] -[2026-03-26 01:09:04 +0000] [281] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [281] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [304] [INFO] Booting worker with pid: 304 -[2026-03-26 01:09:04 +0000] [305] [INFO] Booting worker with pid: 305 -[2026-03-26 01:09:04 +0000] [288] [INFO] Started server process [288] -[2026-03-26 01:09:04 +0000] [288] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [288] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [307] [INFO] Booting worker with pid: 307 -[2026-03-26 01:09:04 +0000] [310] [INFO] Booting worker with pid: 310 -[2026-03-26 01:09:04 +0000] [285] [INFO] Started server process [285] -[2026-03-26 01:09:04 +0000] [285] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [285] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [311] [INFO] Booting worker with pid: 311 -[2026-03-26 01:09:04 +0000] [280] [INFO] Started server process [280] -[2026-03-26 01:09:04 +0000] [280] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [280] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [312] [INFO] Booting worker with pid: 312 -[2026-03-26 01:09:04 +0000] [283] [INFO] Started server process [283] -[2026-03-26 01:09:04 +0000] [283] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [283] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [301] [INFO] Started server process [301] -[2026-03-26 01:09:04 +0000] [301] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [301] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [316] [INFO] Booting worker with pid: 316 -[2026-03-26 01:09:04 +0000] [293] [INFO] Started server process [293] -[2026-03-26 01:09:04 +0000] [293] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [293] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [317] [INFO] Booting worker with pid: 317 -[2026-03-26 01:09:04 +0000] [292] [INFO] Started server process [292] -[2026-03-26 01:09:04 +0000] [292] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [292] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [320] [INFO] Booting worker with pid: 320 -[2026-03-26 01:09:04 +0000] [291] [INFO] Started server process [291] -[2026-03-26 01:09:04 +0000] [291] [INFO] Waiting for application startup. -[2026-03-26 01:09:04 +0000] [291] [INFO] Application startup complete. -[2026-03-26 01:09:04 +0000] [321] [INFO] Booting worker with pid: 321 -[2026-03-26 01:09:05 +0000] [322] [INFO] Booting worker with pid: 322 -[2026-03-26 01:09:05 +0000] [323] [INFO] Booting worker with pid: 323 -[2026-03-26 01:09:05 +0000] [325] [INFO] Booting worker with pid: 325 -[2026-03-26 01:09:05 +0000] [303] [INFO] Started server process [303] -[2026-03-26 01:09:05 +0000] [303] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [303] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [299] [INFO] Started server process [299] -[2026-03-26 01:09:05 +0000] [299] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [299] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [327] [INFO] Booting worker with pid: 327 -[2026-03-26 01:09:05 +0000] [307] [INFO] Started server process [307] -[2026-03-26 01:09:05 +0000] [307] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [307] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [330] [INFO] Booting worker with pid: 330 -[2026-03-26 01:09:05 +0000] [333] [INFO] Booting worker with pid: 333 -[2026-03-26 01:09:05 +0000] [311] [INFO] Started server process [311] -[2026-03-26 01:09:05 +0000] [311] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [311] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [310] [INFO] Started server process [310] -[2026-03-26 01:09:05 +0000] [310] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [310] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [294] [INFO] Started server process [294] -[2026-03-26 01:09:05 +0000] [294] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [294] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [334] [INFO] Booting worker with pid: 334 -[2026-03-26 01:09:05 +0000] [304] [INFO] Started server process [304] -[2026-03-26 01:09:05 +0000] [304] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [304] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [336] [INFO] Booting worker with pid: 336 -[2026-03-26 01:09:05 +0000] [337] [INFO] Booting worker with pid: 337 -[2026-03-26 01:09:05 +0000] [317] [INFO] Started server process [317] -[2026-03-26 01:09:05 +0000] [317] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [317] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [339] [INFO] Booting worker with pid: 339 -[2026-03-26 01:09:05 +0000] [322] [INFO] Started server process [322] -[2026-03-26 01:09:05 +0000] [322] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [322] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [343] [INFO] Booting worker with pid: 343 -[2026-03-26 01:09:05 +0000] [321] [INFO] Started server process [321] -[2026-03-26 01:09:05 +0000] [321] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [321] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [320] [INFO] Started server process [320] -[2026-03-26 01:09:05 +0000] [320] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [320] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [345] [INFO] Booting worker with pid: 345 -[2026-03-26 01:09:05 +0000] [305] [INFO] Started server process [305] -[2026-03-26 01:09:05 +0000] [305] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [305] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [348] [INFO] Booting worker with pid: 348 -[2026-03-26 01:09:05 +0000] [316] [INFO] Started server process [316] -[2026-03-26 01:09:05 +0000] [316] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [316] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [312] [INFO] Started server process [312] -[2026-03-26 01:09:05 +0000] [312] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [312] [INFO] Application startup complete. -[2026-03-26 01:09:05 +0000] [349] [INFO] Booting worker with pid: 349 -[2026-03-26 01:09:05 +0000] [325] [INFO] Started server process [325] -[2026-03-26 01:09:05 +0000] [325] [INFO] Waiting for application startup. -[2026-03-26 01:09:05 +0000] [325] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [351] [INFO] Booting worker with pid: 351 -[2026-03-26 01:09:06 +0000] [352] [INFO] Booting worker with pid: 352 -[2026-03-26 01:09:06 +0000] [354] [INFO] Booting worker with pid: 354 -[2026-03-26 01:09:06 +0000] [327] [INFO] Started server process [327] -[2026-03-26 01:09:06 +0000] [327] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [327] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [333] [INFO] Started server process [333] -[2026-03-26 01:09:06 +0000] [333] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [333] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [336] [INFO] Started server process [336] -[2026-03-26 01:09:06 +0000] [336] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [336] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [334] [INFO] Started server process [334] -[2026-03-26 01:09:06 +0000] [334] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [334] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [360] [INFO] Booting worker with pid: 360 -[2026-03-26 01:09:06 +0000] [330] [INFO] Started server process [330] -[2026-03-26 01:09:06 +0000] [330] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [330] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [323] [INFO] Started server process [323] -[2026-03-26 01:09:06 +0000] [323] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [323] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [362] [INFO] Booting worker with pid: 362 -[2026-03-26 01:09:06 +0000] [337] [INFO] Started server process [337] -[2026-03-26 01:09:06 +0000] [337] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [337] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [363] [INFO] Booting worker with pid: 363 -[2026-03-26 01:09:06 +0000] [364] [INFO] Booting worker with pid: 364 -[2026-03-26 01:09:06 +0000] [365] [INFO] Booting worker with pid: 365 -[2026-03-26 01:09:06 +0000] [339] [INFO] Started server process [339] -[2026-03-26 01:09:06 +0000] [339] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [339] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [368] [INFO] Booting worker with pid: 368 -[2026-03-26 01:09:06 +0000] [369] [INFO] Booting worker with pid: 369 -[2026-03-26 01:09:06 +0000] [345] [INFO] Started server process [345] -[2026-03-26 01:09:06 +0000] [345] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [345] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [370] [INFO] Booting worker with pid: 370 -[2026-03-26 01:09:06 +0000] [372] [INFO] Booting worker with pid: 372 -[2026-03-26 01:09:06 +0000] [348] [INFO] Started server process [348] -[2026-03-26 01:09:06 +0000] [348] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [348] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [373] [INFO] Booting worker with pid: 373 -[2026-03-26 01:09:06 +0000] [376] [INFO] Booting worker with pid: 376 -[2026-03-26 01:09:06 +0000] [349] [INFO] Started server process [349] -[2026-03-26 01:09:06 +0000] [349] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [349] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [343] [INFO] Started server process [343] -[2026-03-26 01:09:06 +0000] [343] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [343] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [360] [INFO] Started server process [360] -[2026-03-26 01:09:06 +0000] [360] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [360] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [378] [INFO] Booting worker with pid: 378 -[2026-03-26 01:09:06 +0000] [379] [INFO] Booting worker with pid: 379 -[2026-03-26 01:09:06 +0000] [352] [INFO] Started server process [352] -[2026-03-26 01:09:06 +0000] [352] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [352] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [351] [INFO] Started server process [351] -[2026-03-26 01:09:06 +0000] [351] [INFO] Waiting for application startup. -[2026-03-26 01:09:06 +0000] [351] [INFO] Application startup complete. -[2026-03-26 01:09:06 +0000] [382] [INFO] Booting worker with pid: 382 -[2026-03-26 01:09:07 +0000] [384] [INFO] Booting worker with pid: 384 -[2026-03-26 01:09:07 +0000] [362] [INFO] Started server process [362] -[2026-03-26 01:09:07 +0000] [362] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [362] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [385] [INFO] Booting worker with pid: 385 -[2026-03-26 01:09:07 +0000] [387] [INFO] Booting worker with pid: 387 -[2026-03-26 01:09:07 +0000] [364] [INFO] Started server process [364] -[2026-03-26 01:09:07 +0000] [364] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [364] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [388] [INFO] Booting worker with pid: 388 -[2026-03-26 01:09:07 +0000] [389] [INFO] Booting worker with pid: 389 -[2026-03-26 01:09:07 +0000] [391] [INFO] Booting worker with pid: 391 -[2026-03-26 01:09:07 +0000] [363] [INFO] Started server process [363] -[2026-03-26 01:09:07 +0000] [363] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [363] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [392] [INFO] Booting worker with pid: 392 -[2026-03-26 01:09:07 +0000] [393] [INFO] Booting worker with pid: 393 -[2026-03-26 01:09:07 +0000] [395] [INFO] Booting worker with pid: 395 -[2026-03-26 01:09:07 +0000] [373] [INFO] Started server process [373] -[2026-03-26 01:09:07 +0000] [373] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [373] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [365] [INFO] Started server process [365] -[2026-03-26 01:09:07 +0000] [365] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [365] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [399] [INFO] Booting worker with pid: 399 -[2026-03-26 01:09:07 +0000] [400] [INFO] Booting worker with pid: 400 -[2026-03-26 01:09:07 +0000] [372] [INFO] Started server process [372] -[2026-03-26 01:09:07 +0000] [372] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [372] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [401] [INFO] Booting worker with pid: 401 -[2026-03-26 01:09:07 +0000] [382] [INFO] Started server process [382] -[2026-03-26 01:09:07 +0000] [382] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [382] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [403] [INFO] Booting worker with pid: 403 -[2026-03-26 01:09:07 +0000] [354] [INFO] Started server process [354] -[2026-03-26 01:09:07 +0000] [354] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [354] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [370] [INFO] Started server process [370] -[2026-03-26 01:09:07 +0000] [370] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [370] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [405] [INFO] Booting worker with pid: 405 -[2026-03-26 01:09:07 +0000] [409] [INFO] Booting worker with pid: 409 -[2026-03-26 01:09:07 +0000] [379] [INFO] Started server process [379] -[2026-03-26 01:09:07 +0000] [379] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [379] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [376] [INFO] Started server process [376] -[2026-03-26 01:09:07 +0000] [376] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [376] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [410] [INFO] Booting worker with pid: 410 -[2026-03-26 01:09:07 +0000] [385] [INFO] Started server process [385] -[2026-03-26 01:09:07 +0000] [385] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [385] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [369] [INFO] Started server process [369] -[2026-03-26 01:09:07 +0000] [369] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [369] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [414] [INFO] Booting worker with pid: 414 -[2026-03-26 01:09:07 +0000] [415] [INFO] Booting worker with pid: 415 -[2026-03-26 01:09:07 +0000] [378] [INFO] Started server process [378] -[2026-03-26 01:09:07 +0000] [378] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [378] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [416] [INFO] Booting worker with pid: 416 -[2026-03-26 01:09:07 +0000] [368] [INFO] Started server process [368] -[2026-03-26 01:09:07 +0000] [368] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [368] [INFO] Application startup complete. -[2026-03-26 01:09:07 +0000] [418] [INFO] Booting worker with pid: 418 -[2026-03-26 01:09:07 +0000] [387] [INFO] Started server process [387] -[2026-03-26 01:09:07 +0000] [387] [INFO] Waiting for application startup. -[2026-03-26 01:09:07 +0000] [387] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [419] [INFO] Booting worker with pid: 419 -[2026-03-26 01:09:08 +0000] [420] [INFO] Booting worker with pid: 420 -[2026-03-26 01:09:08 +0000] [421] [INFO] Booting worker with pid: 421 -[2026-03-26 01:09:08 +0000] [422] [INFO] Booting worker with pid: 422 -[2026-03-26 01:09:08 +0000] [423] [INFO] Booting worker with pid: 423 -[2026-03-26 01:09:08 +0000] [392] [INFO] Started server process [392] -[2026-03-26 01:09:08 +0000] [392] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [392] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [388] [INFO] Started server process [388] -[2026-03-26 01:09:08 +0000] [388] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [388] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [426] [INFO] Booting worker with pid: 426 -[2026-03-26 01:09:08 +0000] [427] [INFO] Booting worker with pid: 427 -[2026-03-26 01:09:08 +0000] [430] [INFO] Booting worker with pid: 430 -[2026-03-26 01:09:08 +0000] [384] [INFO] Started server process [384] -[2026-03-26 01:09:08 +0000] [384] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [384] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [399] [INFO] Started server process [399] -[2026-03-26 01:09:08 +0000] [399] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [399] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [431] [INFO] Booting worker with pid: 431 -[2026-03-26 01:09:08 +0000] [414] [INFO] Started server process [414] -[2026-03-26 01:09:08 +0000] [414] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [414] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [434] [INFO] Booting worker with pid: 434 -[2026-03-26 01:09:08 +0000] [393] [INFO] Started server process [393] -[2026-03-26 01:09:08 +0000] [393] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [393] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [435] [INFO] Booting worker with pid: 435 -[2026-03-26 01:09:08 +0000] [395] [INFO] Started server process [395] -[2026-03-26 01:09:08 +0000] [395] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [395] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [438] [INFO] Booting worker with pid: 438 -[2026-03-26 01:09:08 +0000] [401] [INFO] Started server process [401] -[2026-03-26 01:09:08 +0000] [401] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [401] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [440] [INFO] Booting worker with pid: 440 -[2026-03-26 01:09:08 +0000] [443] [INFO] Booting worker with pid: 443 -[2026-03-26 01:09:08 +0000] [416] [INFO] Started server process [416] -[2026-03-26 01:09:08 +0000] [416] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [416] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [415] [INFO] Started server process [415] -[2026-03-26 01:09:08 +0000] [415] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [415] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [409] [INFO] Started server process [409] -[2026-03-26 01:09:08 +0000] [409] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [409] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [445] [INFO] Booting worker with pid: 445 -[2026-03-26 01:09:08 +0000] [391] [INFO] Started server process [391] -[2026-03-26 01:09:08 +0000] [391] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [391] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [410] [INFO] Started server process [410] -[2026-03-26 01:09:08 +0000] [410] [INFO] Waiting for application startup. -[2026-03-26 01:09:08 +0000] [410] [INFO] Application startup complete. -[2026-03-26 01:09:08 +0000] [447] [INFO] Booting worker with pid: 447 -[2026-03-26 01:09:09 +0000] [449] [INFO] Booting worker with pid: 449 -[2026-03-26 01:09:09 +0000] [450] [INFO] Booting worker with pid: 450 -[2026-03-26 01:09:09 +0000] [418] [INFO] Started server process [418] -[2026-03-26 01:09:09 +0000] [418] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [418] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [451] [INFO] Booting worker with pid: 451 -[2026-03-26 01:09:09 +0000] [434] [INFO] Started server process [434] -[2026-03-26 01:09:09 +0000] [434] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [434] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [454] [INFO] Booting worker with pid: 454 -[2026-03-26 01:09:09 +0000] [421] [INFO] Started server process [421] -[2026-03-26 01:09:09 +0000] [421] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [421] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [403] [INFO] Started server process [403] -[2026-03-26 01:09:09 +0000] [403] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [403] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [420] [INFO] Started server process [420] -[2026-03-26 01:09:09 +0000] [420] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [420] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [427] [INFO] Started server process [427] -[2026-03-26 01:09:09 +0000] [427] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [427] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [459] [INFO] Booting worker with pid: 459 -[2026-03-26 01:09:09 +0000] [426] [INFO] Started server process [426] -[2026-03-26 01:09:09 +0000] [426] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [426] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [438] [INFO] Started server process [438] -[2026-03-26 01:09:09 +0000] [438] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [438] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [435] [INFO] Started server process [435] -[2026-03-26 01:09:09 +0000] [435] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [435] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [430] [INFO] Started server process [430] -[2026-03-26 01:09:09 +0000] [430] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [430] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [463] [INFO] Booting worker with pid: 463 -[2026-03-26 01:09:09 +0000] [464] [INFO] Booting worker with pid: 464 -[2026-03-26 01:09:09 +0000] [467] [INFO] Booting worker with pid: 467 -[2026-03-26 01:09:09 +0000] [447] [INFO] Started server process [447] -[2026-03-26 01:09:09 +0000] [447] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [447] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [389] [INFO] Started server process [389] -[2026-03-26 01:09:09 +0000] [389] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [389] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [469] [INFO] Booting worker with pid: 469 -[2026-03-26 01:09:09 +0000] [472] [INFO] Booting worker with pid: 472 -[2026-03-26 01:09:09 +0000] [423] [INFO] Started server process [423] -[2026-03-26 01:09:09 +0000] [423] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [423] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [405] [INFO] Started server process [405] -[2026-03-26 01:09:09 +0000] [405] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [474] [INFO] Booting worker with pid: 474 -[2026-03-26 01:09:09 +0000] [405] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [400] [INFO] Started server process [400] -[2026-03-26 01:09:09 +0000] [400] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [400] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [475] [INFO] Booting worker with pid: 475 -[2026-03-26 01:09:09 +0000] [419] [INFO] Started server process [419] -[2026-03-26 01:09:09 +0000] [419] [INFO] Waiting for application startup. -[2026-03-26 01:09:09 +0000] [419] [INFO] Application startup complete. -[2026-03-26 01:09:09 +0000] [476] [INFO] Booting worker with pid: 476 -[2026-03-26 01:09:09 +0000] [477] [INFO] Booting worker with pid: 477 -[2026-03-26 01:09:09 +0000] [478] [INFO] Booting worker with pid: 478 -[2026-03-26 01:09:10 +0000] [481] [INFO] Booting worker with pid: 481 -[2026-03-26 01:09:10 +0000] [464] [INFO] Started server process [464] -[2026-03-26 01:09:10 +0000] [464] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [464] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [443] [INFO] Started server process [443] -[2026-03-26 01:09:10 +0000] [443] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [451] [INFO] Started server process [451] -[2026-03-26 01:09:10 +0000] [451] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [451] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [443] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [483] [INFO] Booting worker with pid: 483 -[2026-03-26 01:09:10 +0000] [440] [INFO] Started server process [440] -[2026-03-26 01:09:10 +0000] [440] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [440] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [487] [INFO] Booting worker with pid: 487 -[2026-03-26 01:09:10 +0000] [467] [INFO] Started server process [467] -[2026-03-26 01:09:10 +0000] [467] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [467] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [449] [INFO] Started server process [449] -[2026-03-26 01:09:10 +0000] [449] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [449] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [488] [INFO] Booting worker with pid: 488 -[2026-03-26 01:09:10 +0000] [489] [INFO] Booting worker with pid: 489 -[2026-03-26 01:09:10 +0000] [475] [INFO] Started server process [475] -[2026-03-26 01:09:10 +0000] [475] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [475] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [476] [INFO] Started server process [476] -[2026-03-26 01:09:10 +0000] [476] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [476] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [493] [INFO] Booting worker with pid: 493 -[2026-03-26 01:09:10 +0000] [495] [INFO] Booting worker with pid: 495 -[2026-03-26 01:09:10 +0000] [422] [INFO] Started server process [422] -[2026-03-26 01:09:10 +0000] [422] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [422] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [496] [INFO] Booting worker with pid: 496 -[2026-03-26 01:09:10 +0000] [463] [INFO] Started server process [463] -[2026-03-26 01:09:10 +0000] [463] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [463] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [497] [INFO] Booting worker with pid: 497 -[2026-03-26 01:09:10 +0000] [501] [INFO] Booting worker with pid: 501 -[2026-03-26 01:09:10 +0000] [477] [INFO] Started server process [477] -[2026-03-26 01:09:10 +0000] [477] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [477] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [474] [INFO] Started server process [474] -[2026-03-26 01:09:10 +0000] [474] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [474] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [445] [INFO] Started server process [445] -[2026-03-26 01:09:10 +0000] [445] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [445] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [469] [INFO] Started server process [469] -[2026-03-26 01:09:10 +0000] [469] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [469] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [472] [INFO] Started server process [472] -[2026-03-26 01:09:10 +0000] [472] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [472] [INFO] Application startup complete. -[2026-03-26 01:09:10 +0000] [487] [INFO] Started server process [487] -[2026-03-26 01:09:10 +0000] [487] [INFO] Waiting for application startup. -[2026-03-26 01:09:10 +0000] [487] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [431] [INFO] Started server process [431] -[2026-03-26 01:09:11 +0000] [431] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [431] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [481] [INFO] Started server process [481] -[2026-03-26 01:09:11 +0000] [481] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [481] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [454] [INFO] Started server process [454] -[2026-03-26 01:09:11 +0000] [454] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [454] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [488] [INFO] Started server process [488] -[2026-03-26 01:09:11 +0000] [488] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [488] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [493] [INFO] Started server process [493] -[2026-03-26 01:09:11 +0000] [493] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [493] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [459] [INFO] Started server process [459] -[2026-03-26 01:09:11 +0000] [459] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [459] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [495] [INFO] Started server process [495] -[2026-03-26 01:09:11 +0000] [495] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [495] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [478] [INFO] Started server process [478] -[2026-03-26 01:09:11 +0000] [478] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [478] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [497] [INFO] Started server process [497] -[2026-03-26 01:09:11 +0000] [497] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [497] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [483] [INFO] Started server process [483] -[2026-03-26 01:09:11 +0000] [483] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [483] [INFO] Application startup complete. -[2026-03-26 01:09:11 +0000] [450] [INFO] Started server process [450] -[2026-03-26 01:09:11 +0000] [450] [INFO] Waiting for application startup. -[2026-03-26 01:09:11 +0000] [450] [INFO] Application startup complete. -[2026-03-26 01:09:12 +0000] [477] [ERROR] Exception in ASGI application +[2026-03-29 01:52:35 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 01:52:35 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 01:52:35 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker +[2026-03-29 01:52:35 +0000] [7] [INFO] Booting worker with pid: 7 +[2026-03-29 01:52:35 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 01:52:35 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 01:52:35 +0000] [10] [INFO] Booting worker with pid: 10 +[2026-03-29 01:52:35 +0000] [11] [INFO] Booting worker with pid: 11 +[2026-03-29 01:52:35 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 01:52:35 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 01:52:35 +0000] [14] [INFO] Booting worker with pid: 14 +[2026-03-29 01:52:35 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 01:52:35 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 01:52:35 +0000] [7] [INFO] Started server process [7] +[2026-03-29 01:52:35 +0000] [7] [INFO] Waiting for application startup. +[2026-03-29 01:52:35 +0000] [7] [INFO] Application startup complete. +[2026-03-29 01:52:35 +0000] [8] [INFO] Started server process [8] +[2026-03-29 01:52:35 +0000] [8] [INFO] Waiting for application startup. +[2026-03-29 01:52:35 +0000] [8] [INFO] Application startup complete. +[2026-03-29 01:52:35 +0000] [9] [INFO] Started server process [9] +[2026-03-29 01:52:35 +0000] [9] [INFO] Waiting for application startup. +[2026-03-29 01:52:35 +0000] [9] [INFO] Application startup complete. +[2026-03-29 01:52:35 +0000] [20] [INFO] Booting worker with pid: 20 +[2026-03-29 01:52:35 +0000] [10] [INFO] Started server process [10] +[2026-03-29 01:52:35 +0000] [10] [INFO] Waiting for application startup. +[2026-03-29 01:52:35 +0000] [10] [INFO] Application startup complete. +[2026-03-29 01:52:35 +0000] [11] [INFO] Started server process [11] +[2026-03-29 01:52:35 +0000] [11] [INFO] Waiting for application startup. +[2026-03-29 01:52:35 +0000] [11] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [12] [INFO] Started server process [12] +[2026-03-29 01:52:36 +0000] [12] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [12] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [24] [INFO] Booting worker with pid: 24 +[2026-03-29 01:52:36 +0000] [13] [INFO] Started server process [13] +[2026-03-29 01:52:36 +0000] [13] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [13] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [14] [INFO] Started server process [14] +[2026-03-29 01:52:36 +0000] [14] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [14] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 01:52:36 +0000] [15] [INFO] Started server process [15] +[2026-03-29 01:52:36 +0000] [15] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [15] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [16] [INFO] Started server process [16] +[2026-03-29 01:52:36 +0000] [16] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [16] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 01:52:36 +0000] [20] [INFO] Started server process [20] +[2026-03-29 01:52:36 +0000] [20] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [20] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 01:52:36 +0000] [33] [INFO] Booting worker with pid: 33 +[2026-03-29 01:52:36 +0000] [24] [INFO] Started server process [24] +[2026-03-29 01:52:36 +0000] [24] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [24] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 01:52:36 +0000] [27] [INFO] Started server process [27] +[2026-03-29 01:52:36 +0000] [27] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [27] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 01:52:36 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 01:52:36 +0000] [39] [INFO] Booting worker with pid: 39 +[2026-03-29 01:52:36 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 01:52:36 +0000] [30] [INFO] Started server process [30] +[2026-03-29 01:52:36 +0000] [30] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [30] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [42] [INFO] Booting worker with pid: 42 +[2026-03-29 01:52:36 +0000] [32] [INFO] Started server process [32] +[2026-03-29 01:52:36 +0000] [32] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [32] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [33] [INFO] Started server process [33] +[2026-03-29 01:52:36 +0000] [33] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [33] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 01:52:36 +0000] [35] [INFO] Started server process [35] +[2026-03-29 01:52:36 +0000] [35] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [35] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [49] [INFO] Booting worker with pid: 49 +[2026-03-29 01:52:36 +0000] [37] [INFO] Started server process [37] +[2026-03-29 01:52:36 +0000] [37] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [37] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 01:52:36 +0000] [38] [INFO] Started server process [38] +[2026-03-29 01:52:36 +0000] [38] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [38] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [39] [INFO] Started server process [39] +[2026-03-29 01:52:36 +0000] [39] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [39] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [40] [INFO] Started server process [40] +[2026-03-29 01:52:36 +0000] [40] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [40] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [53] [INFO] Booting worker with pid: 53 +[2026-03-29 01:52:36 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 01:52:36 +0000] [42] [INFO] Started server process [42] +[2026-03-29 01:52:36 +0000] [42] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [42] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 01:52:36 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 01:52:36 +0000] [46] [INFO] Started server process [46] +[2026-03-29 01:52:36 +0000] [46] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [46] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [59] [INFO] Booting worker with pid: 59 +[2026-03-29 01:52:36 +0000] [50] [INFO] Started server process [50] +[2026-03-29 01:52:36 +0000] [50] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [50] [INFO] Application startup complete. +[2026-03-29 01:52:36 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 01:52:36 +0000] [49] [INFO] Started server process [49] +[2026-03-29 01:52:36 +0000] [49] [INFO] Waiting for application startup. +[2026-03-29 01:52:36 +0000] [49] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 01:52:37 +0000] [66] [INFO] Booting worker with pid: 66 +[2026-03-29 01:52:37 +0000] [54] [INFO] Started server process [54] +[2026-03-29 01:52:37 +0000] [54] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [54] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [53] [INFO] Started server process [53] +[2026-03-29 01:52:37 +0000] [53] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [53] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [68] [INFO] Booting worker with pid: 68 +[2026-03-29 01:52:37 +0000] [56] [INFO] Started server process [56] +[2026-03-29 01:52:37 +0000] [56] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [56] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [58] [INFO] Started server process [58] +[2026-03-29 01:52:37 +0000] [58] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [58] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 01:52:37 +0000] [59] [INFO] Started server process [59] +[2026-03-29 01:52:37 +0000] [59] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [59] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [62] [INFO] Started server process [62] +[2026-03-29 01:52:37 +0000] [62] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [62] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [73] [INFO] Booting worker with pid: 73 +[2026-03-29 01:52:37 +0000] [74] [INFO] Booting worker with pid: 74 +[2026-03-29 01:52:37 +0000] [63] [INFO] Started server process [63] +[2026-03-29 01:52:37 +0000] [63] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [63] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [76] [INFO] Booting worker with pid: 76 +[2026-03-29 01:52:37 +0000] [66] [INFO] Started server process [66] +[2026-03-29 01:52:37 +0000] [66] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [66] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [78] [INFO] Booting worker with pid: 78 +[2026-03-29 01:52:37 +0000] [68] [INFO] Started server process [68] +[2026-03-29 01:52:37 +0000] [68] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [68] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 01:52:37 +0000] [70] [INFO] Started server process [70] +[2026-03-29 01:52:37 +0000] [70] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [70] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [73] [INFO] Started server process [73] +[2026-03-29 01:52:37 +0000] [73] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [73] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [74] [INFO] Started server process [74] +[2026-03-29 01:52:37 +0000] [74] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [74] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [84] [INFO] Booting worker with pid: 84 +[2026-03-29 01:52:37 +0000] [85] [INFO] Booting worker with pid: 85 +[2026-03-29 01:52:37 +0000] [76] [INFO] Started server process [76] +[2026-03-29 01:52:37 +0000] [76] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [76] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 01:52:37 +0000] [78] [INFO] Started server process [78] +[2026-03-29 01:52:37 +0000] [78] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [78] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [89] [INFO] Booting worker with pid: 89 +[2026-03-29 01:52:37 +0000] [81] [INFO] Started server process [81] +[2026-03-29 01:52:37 +0000] [81] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [81] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [91] [INFO] Booting worker with pid: 91 +[2026-03-29 01:52:37 +0000] [84] [INFO] Started server process [84] +[2026-03-29 01:52:37 +0000] [84] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [84] [INFO] Application startup complete. +[2026-03-29 01:52:37 +0000] [94] [INFO] Booting worker with pid: 94 +[2026-03-29 01:52:37 +0000] [85] [INFO] Started server process [85] +[2026-03-29 01:52:37 +0000] [85] [INFO] Waiting for application startup. +[2026-03-29 01:52:37 +0000] [85] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [87] [INFO] Started server process [87] +[2026-03-29 01:52:38 +0000] [87] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [87] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 01:52:38 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 01:52:38 +0000] [99] [INFO] Booting worker with pid: 99 +[2026-03-29 01:52:38 +0000] [89] [INFO] Started server process [89] +[2026-03-29 01:52:38 +0000] [89] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [89] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 01:52:38 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 01:52:38 +0000] [91] [INFO] Started server process [91] +[2026-03-29 01:52:38 +0000] [91] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [91] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 01:52:38 +0000] [94] [INFO] Started server process [94] +[2026-03-29 01:52:38 +0000] [94] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [94] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [105] [INFO] Booting worker with pid: 105 +[2026-03-29 01:52:38 +0000] [106] [INFO] Booting worker with pid: 106 +[2026-03-29 01:52:38 +0000] [97] [INFO] Started server process [97] +[2026-03-29 01:52:38 +0000] [97] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [97] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [96] [INFO] Started server process [96] +[2026-03-29 01:52:38 +0000] [96] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [96] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [109] [INFO] Booting worker with pid: 109 +[2026-03-29 01:52:38 +0000] [99] [INFO] Started server process [99] +[2026-03-29 01:52:38 +0000] [99] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [99] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [100] [INFO] Started server process [100] +[2026-03-29 01:52:38 +0000] [100] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [100] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 01:52:38 +0000] [102] [INFO] Started server process [102] +[2026-03-29 01:52:38 +0000] [102] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [102] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [114] [INFO] Booting worker with pid: 114 +[2026-03-29 01:52:38 +0000] [116] [INFO] Booting worker with pid: 116 +[2026-03-29 01:52:38 +0000] [103] [INFO] Started server process [103] +[2026-03-29 01:52:38 +0000] [103] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [103] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [105] [INFO] Started server process [105] +[2026-03-29 01:52:38 +0000] [105] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [105] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [106] [INFO] Started server process [106] +[2026-03-29 01:52:38 +0000] [106] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [106] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 01:52:38 +0000] [109] [INFO] Started server process [109] +[2026-03-29 01:52:38 +0000] [109] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [109] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [121] [INFO] Booting worker with pid: 121 +[2026-03-29 01:52:38 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 01:52:38 +0000] [112] [INFO] Started server process [112] +[2026-03-29 01:52:38 +0000] [112] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [112] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [114] [INFO] Started server process [114] +[2026-03-29 01:52:38 +0000] [114] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [114] [INFO] Application startup complete. +[2026-03-29 01:52:38 +0000] [125] [INFO] Booting worker with pid: 125 +[2026-03-29 01:52:38 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 01:52:38 +0000] [116] [INFO] Started server process [116] +[2026-03-29 01:52:38 +0000] [116] [INFO] Waiting for application startup. +[2026-03-29 01:52:38 +0000] [116] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [128] [INFO] Booting worker with pid: 128 +[2026-03-29 01:52:39 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 01:52:39 +0000] [119] [INFO] Started server process [119] +[2026-03-29 01:52:39 +0000] [119] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [119] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 01:52:39 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 01:52:39 +0000] [122] [INFO] Started server process [122] +[2026-03-29 01:52:39 +0000] [122] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [122] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [121] [INFO] Started server process [121] +[2026-03-29 01:52:39 +0000] [121] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [121] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 01:52:39 +0000] [136] [INFO] Booting worker with pid: 136 +[2026-03-29 01:52:39 +0000] [125] [INFO] Started server process [125] +[2026-03-29 01:52:39 +0000] [125] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [125] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 01:52:39 +0000] [127] [INFO] Started server process [127] +[2026-03-29 01:52:39 +0000] [127] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [127] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 01:52:39 +0000] [141] [INFO] Booting worker with pid: 141 +[2026-03-29 01:52:39 +0000] [143] [INFO] Booting worker with pid: 143 +[2026-03-29 01:52:39 +0000] [128] [INFO] Started server process [128] +[2026-03-29 01:52:39 +0000] [128] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [128] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [144] [INFO] Booting worker with pid: 144 +[2026-03-29 01:52:39 +0000] [130] [INFO] Started server process [130] +[2026-03-29 01:52:39 +0000] [130] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [130] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [131] [INFO] Started server process [131] +[2026-03-29 01:52:39 +0000] [131] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [131] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 01:52:39 +0000] [136] [INFO] Started server process [136] +[2026-03-29 01:52:39 +0000] [136] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [136] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 01:52:39 +0000] [135] [INFO] Started server process [135] +[2026-03-29 01:52:39 +0000] [135] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [135] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [134] [INFO] Started server process [134] +[2026-03-29 01:52:39 +0000] [134] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [134] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [152] [INFO] Booting worker with pid: 152 +[2026-03-29 01:52:39 +0000] [139] [INFO] Started server process [139] +[2026-03-29 01:52:39 +0000] [139] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [139] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 01:52:39 +0000] [140] [INFO] Started server process [140] +[2026-03-29 01:52:39 +0000] [140] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [140] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [141] [INFO] Started server process [141] +[2026-03-29 01:52:39 +0000] [141] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [141] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 01:52:39 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 01:52:39 +0000] [143] [INFO] Started server process [143] +[2026-03-29 01:52:39 +0000] [143] [INFO] Waiting for application startup. +[2026-03-29 01:52:39 +0000] [143] [INFO] Application startup complete. +[2026-03-29 01:52:39 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 01:52:40 +0000] [144] [INFO] Started server process [144] +[2026-03-29 01:52:40 +0000] [144] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [144] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [151] [INFO] Started server process [151] +[2026-03-29 01:52:40 +0000] [151] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [151] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [163] [INFO] Booting worker with pid: 163 +[2026-03-29 01:52:40 +0000] [149] [INFO] Started server process [149] +[2026-03-29 01:52:40 +0000] [149] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [149] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 01:52:40 +0000] [155] [INFO] Started server process [155] +[2026-03-29 01:52:40 +0000] [155] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [155] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [152] [INFO] Started server process [152] +[2026-03-29 01:52:40 +0000] [152] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [152] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [168] [INFO] Booting worker with pid: 168 +[2026-03-29 01:52:40 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 01:52:40 +0000] [157] [INFO] Started server process [157] +[2026-03-29 01:52:40 +0000] [157] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [157] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [171] [INFO] Booting worker with pid: 171 +[2026-03-29 01:52:40 +0000] [159] [INFO] Started server process [159] +[2026-03-29 01:52:40 +0000] [159] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [159] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 01:52:40 +0000] [161] [INFO] Started server process [161] +[2026-03-29 01:52:40 +0000] [161] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [161] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [175] [INFO] Booting worker with pid: 175 +[2026-03-29 01:52:40 +0000] [163] [INFO] Started server process [163] +[2026-03-29 01:52:40 +0000] [163] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [163] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 01:52:40 +0000] [178] [INFO] Booting worker with pid: 178 +[2026-03-29 01:52:40 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 01:52:40 +0000] [166] [INFO] Started server process [166] +[2026-03-29 01:52:40 +0000] [166] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [166] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [168] [INFO] Started server process [168] +[2026-03-29 01:52:40 +0000] [168] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [168] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [182] [INFO] Booting worker with pid: 182 +[2026-03-29 01:52:40 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 01:52:40 +0000] [169] [INFO] Started server process [169] +[2026-03-29 01:52:40 +0000] [169] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [169] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [171] [INFO] Started server process [171] +[2026-03-29 01:52:40 +0000] [171] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [171] [INFO] Application startup complete. +[2026-03-29 01:52:40 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 01:52:40 +0000] [188] [INFO] Booting worker with pid: 188 +[2026-03-29 01:52:40 +0000] [173] [INFO] Started server process [173] +[2026-03-29 01:52:40 +0000] [173] [INFO] Waiting for application startup. +[2026-03-29 01:52:40 +0000] [173] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [190] [INFO] Booting worker with pid: 190 +[2026-03-29 01:52:41 +0000] [175] [INFO] Started server process [175] +[2026-03-29 01:52:41 +0000] [175] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [175] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 01:52:41 +0000] [177] [INFO] Started server process [177] +[2026-03-29 01:52:41 +0000] [177] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [177] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [178] [INFO] Started server process [178] +[2026-03-29 01:52:41 +0000] [178] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [178] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [195] [INFO] Booting worker with pid: 195 +[2026-03-29 01:52:41 +0000] [180] [INFO] Started server process [180] +[2026-03-29 01:52:41 +0000] [180] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [180] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 01:52:41 +0000] [183] [INFO] Started server process [183] +[2026-03-29 01:52:41 +0000] [199] [INFO] Booting worker with pid: 199 +[2026-03-29 01:52:41 +0000] [183] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [183] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [182] [INFO] Started server process [182] +[2026-03-29 01:52:41 +0000] [182] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [182] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 01:52:41 +0000] [201] [INFO] Booting worker with pid: 201 +[2026-03-29 01:52:41 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 01:52:41 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 01:52:41 +0000] [186] [INFO] Started server process [186] +[2026-03-29 01:52:41 +0000] [186] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [186] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 01:52:41 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 01:52:41 +0000] [188] [INFO] Started server process [188] +[2026-03-29 01:52:41 +0000] [188] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [188] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 01:52:41 +0000] [190] [INFO] Started server process [190] +[2026-03-29 01:52:41 +0000] [190] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [190] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 01:52:41 +0000] [192] [INFO] Started server process [192] +[2026-03-29 01:52:41 +0000] [192] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [192] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [212] [INFO] Booting worker with pid: 212 +[2026-03-29 01:52:41 +0000] [196] [INFO] Started server process [196] +[2026-03-29 01:52:41 +0000] [195] [INFO] Started server process [195] +[2026-03-29 01:52:41 +0000] [195] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [196] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [195] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [196] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 01:52:41 +0000] [217] [INFO] Booting worker with pid: 217 +[2026-03-29 01:52:41 +0000] [199] [INFO] Started server process [199] +[2026-03-29 01:52:41 +0000] [199] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [199] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [201] [INFO] Started server process [201] +[2026-03-29 01:52:41 +0000] [201] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [201] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [200] [INFO] Started server process [200] +[2026-03-29 01:52:41 +0000] [200] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [200] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [221] [INFO] Booting worker with pid: 221 +[2026-03-29 01:52:41 +0000] [202] [INFO] Started server process [202] +[2026-03-29 01:52:41 +0000] [202] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [202] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [223] [INFO] Booting worker with pid: 223 +[2026-03-29 01:52:41 +0000] [204] [INFO] Started server process [204] +[2026-03-29 01:52:41 +0000] [204] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [204] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [205] [INFO] Started server process [205] +[2026-03-29 01:52:41 +0000] [205] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [205] [INFO] Application startup complete. +[2026-03-29 01:52:41 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 01:52:41 +0000] [227] [INFO] Booting worker with pid: 227 +[2026-03-29 01:52:41 +0000] [207] [INFO] Started server process [207] +[2026-03-29 01:52:41 +0000] [207] [INFO] Waiting for application startup. +[2026-03-29 01:52:41 +0000] [207] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [208] [INFO] Started server process [208] +[2026-03-29 01:52:42 +0000] [208] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [208] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [229] [INFO] Booting worker with pid: 229 +[2026-03-29 01:52:42 +0000] [231] [INFO] Booting worker with pid: 231 +[2026-03-29 01:52:42 +0000] [210] [INFO] Started server process [210] +[2026-03-29 01:52:42 +0000] [210] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [210] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [233] [INFO] Booting worker with pid: 233 +[2026-03-29 01:52:42 +0000] [212] [INFO] Started server process [212] +[2026-03-29 01:52:42 +0000] [212] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [212] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 01:52:42 +0000] [216] [INFO] Started server process [216] +[2026-03-29 01:52:42 +0000] [216] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [216] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [217] [INFO] Started server process [217] +[2026-03-29 01:52:42 +0000] [217] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [217] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 01:52:42 +0000] [221] [INFO] Started server process [221] +[2026-03-29 01:52:42 +0000] [221] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [221] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [240] [INFO] Booting worker with pid: 240 +[2026-03-29 01:52:42 +0000] [223] [INFO] Started server process [223] +[2026-03-29 01:52:42 +0000] [223] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [223] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [241] [INFO] Booting worker with pid: 241 +[2026-03-29 01:52:42 +0000] [227] [INFO] Started server process [227] +[2026-03-29 01:52:42 +0000] [227] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [227] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [226] [INFO] Started server process [226] +[2026-03-29 01:52:42 +0000] [226] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [226] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [244] [INFO] Booting worker with pid: 244 +[2026-03-29 01:52:42 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 01:52:42 +0000] [229] [INFO] Started server process [229] +[2026-03-29 01:52:42 +0000] [229] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [229] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [231] [INFO] Started server process [231] +[2026-03-29 01:52:42 +0000] [231] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [231] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 01:52:42 +0000] [250] [INFO] Booting worker with pid: 250 +[2026-03-29 01:52:42 +0000] [233] [INFO] Started server process [233] +[2026-03-29 01:52:42 +0000] [233] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [233] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [235] [INFO] Started server process [235] +[2026-03-29 01:52:42 +0000] [235] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [235] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 01:52:42 +0000] [237] [INFO] Started server process [237] +[2026-03-29 01:52:42 +0000] [237] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [237] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [254] [INFO] Booting worker with pid: 254 +[2026-03-29 01:52:42 +0000] [240] [INFO] Started server process [240] +[2026-03-29 01:52:42 +0000] [240] [INFO] Waiting for application startup. +[2026-03-29 01:52:42 +0000] [240] [INFO] Application startup complete. +[2026-03-29 01:52:42 +0000] [256] [INFO] Booting worker with pid: 256 +[2026-03-29 01:52:43 +0000] [257] [INFO] Booting worker with pid: 257 +[2026-03-29 01:52:43 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 01:52:43 +0000] [244] [INFO] Started server process [244] +[2026-03-29 01:52:43 +0000] [244] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [260] [INFO] Booting worker with pid: 260 +[2026-03-29 01:52:43 +0000] [244] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [261] [INFO] Booting worker with pid: 261 +[2026-03-29 01:52:43 +0000] [262] [INFO] Booting worker with pid: 262 +[2026-03-29 01:52:43 +0000] [264] [INFO] Booting worker with pid: 264 +[2026-03-29 01:52:43 +0000] [248] [INFO] Started server process [248] +[2026-03-29 01:52:43 +0000] [248] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [248] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [241] [INFO] Started server process [241] +[2026-03-29 01:52:43 +0000] [241] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [241] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [266] [INFO] Booting worker with pid: 266 +[2026-03-29 01:52:43 +0000] [246] [INFO] Started server process [246] +[2026-03-29 01:52:43 +0000] [246] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [246] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [250] [INFO] Started server process [250] +[2026-03-29 01:52:43 +0000] [250] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [250] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [269] [INFO] Booting worker with pid: 269 +[2026-03-29 01:52:43 +0000] [270] [INFO] Booting worker with pid: 270 +[2026-03-29 01:52:43 +0000] [252] [INFO] Started server process [252] +[2026-03-29 01:52:43 +0000] [252] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [252] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [257] [INFO] Started server process [257] +[2026-03-29 01:52:43 +0000] [257] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [257] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [274] [INFO] Booting worker with pid: 274 +[2026-03-29 01:52:43 +0000] [254] [INFO] Started server process [254] +[2026-03-29 01:52:43 +0000] [254] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [254] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [275] [INFO] Booting worker with pid: 275 +[2026-03-29 01:52:43 +0000] [277] [INFO] Booting worker with pid: 277 +[2026-03-29 01:52:43 +0000] [256] [INFO] Started server process [256] +[2026-03-29 01:52:43 +0000] [256] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [256] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [261] [INFO] Started server process [261] +[2026-03-29 01:52:43 +0000] [261] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [261] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [279] [INFO] Booting worker with pid: 279 +[2026-03-29 01:52:43 +0000] [258] [INFO] Started server process [258] +[2026-03-29 01:52:43 +0000] [258] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [258] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [281] [INFO] Booting worker with pid: 281 +[2026-03-29 01:52:43 +0000] [260] [INFO] Started server process [260] +[2026-03-29 01:52:43 +0000] [260] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [260] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [283] [INFO] Booting worker with pid: 283 +[2026-03-29 01:52:43 +0000] [264] [INFO] Started server process [264] +[2026-03-29 01:52:43 +0000] [264] [INFO] Waiting for application startup. +[2026-03-29 01:52:43 +0000] [264] [INFO] Application startup complete. +[2026-03-29 01:52:43 +0000] [285] [INFO] Booting worker with pid: 285 +[2026-03-29 01:52:44 +0000] [286] [INFO] Booting worker with pid: 286 +[2026-03-29 01:52:44 +0000] [262] [INFO] Started server process [262] +[2026-03-29 01:52:44 +0000] [262] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [262] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [289] [INFO] Booting worker with pid: 289 +[2026-03-29 01:52:44 +0000] [269] [INFO] Started server process [269] +[2026-03-29 01:52:44 +0000] [269] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [269] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [290] [INFO] Booting worker with pid: 290 +[2026-03-29 01:52:44 +0000] [275] [INFO] Started server process [275] +[2026-03-29 01:52:44 +0000] [275] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [275] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [292] [INFO] Booting worker with pid: 292 +[2026-03-29 01:52:44 +0000] [294] [INFO] Booting worker with pid: 294 +[2026-03-29 01:52:44 +0000] [296] [INFO] Booting worker with pid: 296 +[2026-03-29 01:52:44 +0000] [266] [INFO] Started server process [266] +[2026-03-29 01:52:44 +0000] [266] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [266] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [277] [INFO] Started server process [277] +[2026-03-29 01:52:44 +0000] [277] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [277] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [298] [INFO] Booting worker with pid: 298 +[2026-03-29 01:52:44 +0000] [270] [INFO] Started server process [270] +[2026-03-29 01:52:44 +0000] [270] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [270] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [299] [INFO] Booting worker with pid: 299 +[2026-03-29 01:52:44 +0000] [301] [INFO] Booting worker with pid: 301 +[2026-03-29 01:52:44 +0000] [274] [INFO] Started server process [274] +[2026-03-29 01:52:44 +0000] [274] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [274] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [302] [INFO] Booting worker with pid: 302 +[2026-03-29 01:52:44 +0000] [304] [INFO] Booting worker with pid: 304 +[2026-03-29 01:52:44 +0000] [286] [INFO] Started server process [286] +[2026-03-29 01:52:44 +0000] [286] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [286] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [281] [INFO] Started server process [281] +[2026-03-29 01:52:44 +0000] [281] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [281] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [283] [INFO] Started server process [283] +[2026-03-29 01:52:44 +0000] [283] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [283] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [307] [INFO] Booting worker with pid: 307 +[2026-03-29 01:52:44 +0000] [279] [INFO] Started server process [279] +[2026-03-29 01:52:44 +0000] [279] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [279] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [309] [INFO] Booting worker with pid: 309 +[2026-03-29 01:52:44 +0000] [311] [INFO] Booting worker with pid: 311 +[2026-03-29 01:52:44 +0000] [285] [INFO] Started server process [285] +[2026-03-29 01:52:44 +0000] [285] [INFO] Waiting for application startup. +[2026-03-29 01:52:44 +0000] [285] [INFO] Application startup complete. +[2026-03-29 01:52:44 +0000] [312] [INFO] Booting worker with pid: 312 +[2026-03-29 01:52:45 +0000] [313] [INFO] Booting worker with pid: 313 +[2026-03-29 01:52:45 +0000] [292] [INFO] Started server process [292] +[2026-03-29 01:52:45 +0000] [292] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [292] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [316] [INFO] Booting worker with pid: 316 +[2026-03-29 01:52:45 +0000] [289] [INFO] Started server process [289] +[2026-03-29 01:52:45 +0000] [289] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [289] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [318] [INFO] Booting worker with pid: 318 +[2026-03-29 01:52:45 +0000] [319] [INFO] Booting worker with pid: 319 +[2026-03-29 01:52:45 +0000] [290] [INFO] Started server process [290] +[2026-03-29 01:52:45 +0000] [290] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [290] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [320] [INFO] Booting worker with pid: 320 +[2026-03-29 01:52:45 +0000] [321] [INFO] Booting worker with pid: 321 +[2026-03-29 01:52:45 +0000] [322] [INFO] Booting worker with pid: 322 +[2026-03-29 01:52:45 +0000] [323] [INFO] Booting worker with pid: 323 +[2026-03-29 01:52:45 +0000] [324] [INFO] Booting worker with pid: 324 +[2026-03-29 01:52:45 +0000] [325] [INFO] Booting worker with pid: 325 +[2026-03-29 01:52:45 +0000] [302] [INFO] Started server process [302] +[2026-03-29 01:52:45 +0000] [302] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [302] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [328] [INFO] Booting worker with pid: 328 +[2026-03-29 01:52:45 +0000] [307] [INFO] Started server process [307] +[2026-03-29 01:52:45 +0000] [307] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [307] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [330] [INFO] Booting worker with pid: 330 +[2026-03-29 01:52:45 +0000] [299] [INFO] Started server process [299] +[2026-03-29 01:52:45 +0000] [299] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [299] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [332] [INFO] Booting worker with pid: 332 +[2026-03-29 01:52:45 +0000] [298] [INFO] Started server process [298] +[2026-03-29 01:52:45 +0000] [298] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [298] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [333] [INFO] Booting worker with pid: 333 +[2026-03-29 01:52:45 +0000] [335] [INFO] Booting worker with pid: 335 +[2026-03-29 01:52:45 +0000] [296] [INFO] Started server process [296] +[2026-03-29 01:52:45 +0000] [296] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [296] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [311] [INFO] Started server process [311] +[2026-03-29 01:52:45 +0000] [311] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [311] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [338] [INFO] Booting worker with pid: 338 +[2026-03-29 01:52:45 +0000] [304] [INFO] Started server process [304] +[2026-03-29 01:52:45 +0000] [304] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [304] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [318] [INFO] Started server process [318] +[2026-03-29 01:52:45 +0000] [318] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [318] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [323] [INFO] Started server process [323] +[2026-03-29 01:52:45 +0000] [323] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [323] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [319] [INFO] Started server process [319] +[2026-03-29 01:52:45 +0000] [319] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [319] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [344] [INFO] Booting worker with pid: 344 +[2026-03-29 01:52:45 +0000] [313] [INFO] Started server process [313] +[2026-03-29 01:52:45 +0000] [313] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [313] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [320] [INFO] Started server process [320] +[2026-03-29 01:52:45 +0000] [320] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [320] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [301] [INFO] Started server process [301] +[2026-03-29 01:52:45 +0000] [301] [INFO] Waiting for application startup. +[2026-03-29 01:52:45 +0000] [301] [INFO] Application startup complete. +[2026-03-29 01:52:45 +0000] [346] [INFO] Booting worker with pid: 346 +[2026-03-29 01:52:46 +0000] [347] [INFO] Booting worker with pid: 347 +[2026-03-29 01:52:46 +0000] [348] [INFO] Booting worker with pid: 348 +[2026-03-29 01:52:46 +0000] [350] [INFO] Booting worker with pid: 350 +[2026-03-29 01:52:46 +0000] [294] [INFO] Started server process [294] +[2026-03-29 01:52:46 +0000] [294] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [294] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [351] [INFO] Booting worker with pid: 351 +[2026-03-29 01:52:46 +0000] [353] [INFO] Booting worker with pid: 353 +[2026-03-29 01:52:46 +0000] [312] [INFO] Started server process [312] +[2026-03-29 01:52:46 +0000] [312] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [312] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [354] [INFO] Booting worker with pid: 354 +[2026-03-29 01:52:46 +0000] [356] [INFO] Booting worker with pid: 356 +[2026-03-29 01:52:46 +0000] [359] [INFO] Booting worker with pid: 359 +[2026-03-29 01:52:46 +0000] [309] [INFO] Started server process [309] +[2026-03-29 01:52:46 +0000] [309] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [309] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [330] [INFO] Started server process [330] +[2026-03-29 01:52:46 +0000] [330] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [330] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [325] [INFO] Started server process [325] +[2026-03-29 01:52:46 +0000] [325] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [325] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [360] [INFO] Booting worker with pid: 360 +[2026-03-29 01:52:46 +0000] [361] [INFO] Booting worker with pid: 361 +[2026-03-29 01:52:46 +0000] [364] [INFO] Booting worker with pid: 364 +[2026-03-29 01:52:46 +0000] [365] [INFO] Booting worker with pid: 365 +[2026-03-29 01:52:46 +0000] [322] [INFO] Started server process [322] +[2026-03-29 01:52:46 +0000] [322] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [322] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [332] [INFO] Started server process [332] +[2026-03-29 01:52:46 +0000] [338] [INFO] Started server process [338] +[2026-03-29 01:52:46 +0000] [338] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [338] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [332] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [332] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [370] [INFO] Booting worker with pid: 370 +[2026-03-29 01:52:46 +0000] [347] [INFO] Started server process [347] +[2026-03-29 01:52:46 +0000] [347] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [344] [INFO] Started server process [344] +[2026-03-29 01:52:46 +0000] [344] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [347] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [344] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [316] [INFO] Started server process [316] +[2026-03-29 01:52:46 +0000] [316] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [316] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [335] [INFO] Started server process [335] +[2026-03-29 01:52:46 +0000] [335] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [335] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [374] [INFO] Booting worker with pid: 374 +[2026-03-29 01:52:46 +0000] [321] [INFO] Started server process [321] +[2026-03-29 01:52:46 +0000] [321] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [321] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [376] [INFO] Booting worker with pid: 376 +[2026-03-29 01:52:46 +0000] [350] [INFO] Started server process [350] +[2026-03-29 01:52:46 +0000] [350] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [350] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [348] [INFO] Started server process [348] +[2026-03-29 01:52:46 +0000] [348] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [348] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [328] [INFO] Started server process [328] +[2026-03-29 01:52:46 +0000] [328] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [328] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [379] [INFO] Booting worker with pid: 379 +[2026-03-29 01:52:46 +0000] [354] [INFO] Started server process [354] +[2026-03-29 01:52:46 +0000] [354] [INFO] Waiting for application startup. +[2026-03-29 01:52:46 +0000] [354] [INFO] Application startup complete. +[2026-03-29 01:52:46 +0000] [381] [INFO] Booting worker with pid: 381 +[2026-03-29 01:52:46 +0000] [382] [INFO] Booting worker with pid: 382 +[2026-03-29 01:52:47 +0000] [333] [INFO] Started server process [333] +[2026-03-29 01:52:47 +0000] [333] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [333] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [383] [INFO] Booting worker with pid: 383 +[2026-03-29 01:52:47 +0000] [387] [INFO] Booting worker with pid: 387 +[2026-03-29 01:52:47 +0000] [360] [INFO] Started server process [360] +[2026-03-29 01:52:47 +0000] [360] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [360] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [353] [INFO] Started server process [353] +[2026-03-29 01:52:47 +0000] [353] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [353] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [324] [INFO] Started server process [324] +[2026-03-29 01:52:47 +0000] [324] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [324] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [351] [INFO] Started server process [351] +[2026-03-29 01:52:47 +0000] [351] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [351] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [389] [INFO] Booting worker with pid: 389 +[2026-03-29 01:52:47 +0000] [390] [INFO] Booting worker with pid: 390 +[2026-03-29 01:52:47 +0000] [391] [INFO] Booting worker with pid: 391 +[2026-03-29 01:52:47 +0000] [392] [INFO] Booting worker with pid: 392 +[2026-03-29 01:52:47 +0000] [346] [INFO] Started server process [346] +[2026-03-29 01:52:47 +0000] [346] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [346] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [394] [INFO] Booting worker with pid: 394 +[2026-03-29 01:52:47 +0000] [395] [INFO] Booting worker with pid: 395 +[2026-03-29 01:52:47 +0000] [396] [INFO] Booting worker with pid: 396 +[2026-03-29 01:52:47 +0000] [370] [INFO] Started server process [370] +[2026-03-29 01:52:47 +0000] [370] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [370] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [399] [INFO] Booting worker with pid: 399 +[2026-03-29 01:52:47 +0000] [365] [INFO] Started server process [365] +[2026-03-29 01:52:47 +0000] [401] [INFO] Booting worker with pid: 401 +[2026-03-29 01:52:47 +0000] [365] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [365] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [381] [INFO] Started server process [381] +[2026-03-29 01:52:47 +0000] [381] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [381] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [376] [INFO] Started server process [376] +[2026-03-29 01:52:47 +0000] [376] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [376] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [404] [INFO] Booting worker with pid: 404 +[2026-03-29 01:52:47 +0000] [356] [INFO] Started server process [356] +[2026-03-29 01:52:47 +0000] [356] [INFO] Waiting for application startup. +[2026-03-29 01:52:47 +0000] [356] [INFO] Application startup complete. +[2026-03-29 01:52:47 +0000] [405] [INFO] Booting worker with pid: 405 +[2026-03-29 01:52:47 +0000] [406] [INFO] Booting worker with pid: 406 +[2026-03-29 01:52:47 +0000] [408] [INFO] Booting worker with pid: 408 +[2026-03-29 01:52:48 +0000] [409] [INFO] Booting worker with pid: 409 +[2026-03-29 01:52:48 +0000] [361] [INFO] Started server process [361] +[2026-03-29 01:52:48 +0000] [410] [INFO] Booting worker with pid: 410 +[2026-03-29 01:52:48 +0000] [361] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [361] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [411] [INFO] Booting worker with pid: 411 +[2026-03-29 01:52:48 +0000] [414] [INFO] Booting worker with pid: 414 +[2026-03-29 01:52:48 +0000] [389] [INFO] Started server process [389] +[2026-03-29 01:52:48 +0000] [389] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [389] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [391] [INFO] Started server process [391] +[2026-03-29 01:52:48 +0000] [391] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [391] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [415] [INFO] Booting worker with pid: 415 +[2026-03-29 01:52:48 +0000] [387] [INFO] Started server process [387] +[2026-03-29 01:52:48 +0000] [387] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [387] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [420] [INFO] Booting worker with pid: 420 +[2026-03-29 01:52:48 +0000] [359] [INFO] Started server process [359] +[2026-03-29 01:52:48 +0000] [359] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [359] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [421] [INFO] Booting worker with pid: 421 +[2026-03-29 01:52:48 +0000] [364] [INFO] Started server process [364] +[2026-03-29 01:52:48 +0000] [364] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [364] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [422] [INFO] Booting worker with pid: 422 +[2026-03-29 01:52:48 +0000] [374] [INFO] Started server process [374] +[2026-03-29 01:52:48 +0000] [374] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [374] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [394] [INFO] Started server process [394] +[2026-03-29 01:52:48 +0000] [394] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [394] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [383] [INFO] Started server process [383] +[2026-03-29 01:52:48 +0000] [383] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [383] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [427] [INFO] Booting worker with pid: 427 +[2026-03-29 01:52:48 +0000] [390] [INFO] Started server process [390] +[2026-03-29 01:52:48 +0000] [390] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [390] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [392] [INFO] Started server process [392] +[2026-03-29 01:52:48 +0000] [392] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [392] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [429] [INFO] Booting worker with pid: 429 +[2026-03-29 01:52:48 +0000] [395] [INFO] Started server process [395] +[2026-03-29 01:52:48 +0000] [395] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [395] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [432] [INFO] Booting worker with pid: 432 +[2026-03-29 01:52:48 +0000] [401] [INFO] Started server process [401] +[2026-03-29 01:52:48 +0000] [401] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [401] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [382] [INFO] Started server process [382] +[2026-03-29 01:52:48 +0000] [382] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [382] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [434] [INFO] Booting worker with pid: 434 +[2026-03-29 01:52:48 +0000] [379] [INFO] Started server process [379] +[2026-03-29 01:52:48 +0000] [379] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [379] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [404] [INFO] Started server process [404] +[2026-03-29 01:52:48 +0000] [404] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [404] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [436] [INFO] Booting worker with pid: 436 +[2026-03-29 01:52:48 +0000] [437] [INFO] Booting worker with pid: 437 +[2026-03-29 01:52:48 +0000] [438] [INFO] Booting worker with pid: 438 +[2026-03-29 01:52:48 +0000] [439] [INFO] Booting worker with pid: 439 +[2026-03-29 01:52:48 +0000] [408] [INFO] Started server process [408] +[2026-03-29 01:52:48 +0000] [408] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [408] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [396] [INFO] Started server process [396] +[2026-03-29 01:52:48 +0000] [396] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [396] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [443] [INFO] Booting worker with pid: 443 +[2026-03-29 01:52:48 +0000] [406] [INFO] Started server process [406] +[2026-03-29 01:52:48 +0000] [406] [INFO] Waiting for application startup. +[2026-03-29 01:52:48 +0000] [406] [INFO] Application startup complete. +[2026-03-29 01:52:48 +0000] [444] [INFO] Booting worker with pid: 444 +[2026-03-29 01:52:49 +0000] [446] [INFO] Booting worker with pid: 446 +[2026-03-29 01:52:49 +0000] [409] [INFO] Started server process [409] +[2026-03-29 01:52:49 +0000] [409] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [409] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [448] [INFO] Booting worker with pid: 448 +[2026-03-29 01:52:49 +0000] [427] [INFO] Started server process [427] +[2026-03-29 01:52:49 +0000] [427] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [427] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [399] [INFO] Started server process [399] +[2026-03-29 01:52:49 +0000] [399] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [399] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [415] [INFO] Started server process [415] +[2026-03-29 01:52:49 +0000] [415] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [415] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [451] [INFO] Booting worker with pid: 451 +[2026-03-29 01:52:49 +0000] [453] [INFO] Booting worker with pid: 453 +[2026-03-29 01:52:49 +0000] [454] [INFO] Booting worker with pid: 454 +[2026-03-29 01:52:49 +0000] [456] [INFO] Booting worker with pid: 456 +[2026-03-29 01:52:49 +0000] [410] [INFO] Started server process [410] +[2026-03-29 01:52:49 +0000] [410] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [410] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [458] [INFO] Booting worker with pid: 458 +[2026-03-29 01:52:49 +0000] [459] [INFO] Booting worker with pid: 459 +[2026-03-29 01:52:49 +0000] [414] [INFO] Started server process [414] +[2026-03-29 01:52:49 +0000] [414] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [414] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [439] [INFO] Started server process [439] +[2026-03-29 01:52:49 +0000] [439] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [439] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [420] [INFO] Started server process [420] +[2026-03-29 01:52:49 +0000] [420] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [420] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [461] [INFO] Booting worker with pid: 461 +[2026-03-29 01:52:49 +0000] [463] [INFO] Booting worker with pid: 463 +[2026-03-29 01:52:49 +0000] [411] [INFO] Started server process [411] +[2026-03-29 01:52:49 +0000] [411] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [411] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [464] [INFO] Booting worker with pid: 464 +[2026-03-29 01:52:49 +0000] [446] [INFO] Started server process [446] +[2026-03-29 01:52:49 +0000] [446] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [446] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [467] [INFO] Booting worker with pid: 467 +[2026-03-29 01:52:49 +0000] [468] [INFO] Booting worker with pid: 468 +[2026-03-29 01:52:49 +0000] [436] [INFO] Started server process [436] +[2026-03-29 01:52:49 +0000] [436] [INFO] Waiting for application startup. +[2026-03-29 01:52:49 +0000] [436] [INFO] Application startup complete. +[2026-03-29 01:52:49 +0000] [469] [INFO] Booting worker with pid: 469 +[2026-03-29 01:52:49 +0000] [470] [INFO] Booting worker with pid: 470 +[2026-03-29 01:52:50 +0000] [471] [INFO] Booting worker with pid: 471 +[2026-03-29 01:52:50 +0000] [473] [INFO] Booting worker with pid: 473 +[2026-03-29 01:52:50 +0000] [438] [INFO] Started server process [438] +[2026-03-29 01:52:50 +0000] [438] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [438] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [405] [INFO] Started server process [405] +[2026-03-29 01:52:50 +0000] [405] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [405] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [475] [INFO] Booting worker with pid: 475 +[2026-03-29 01:52:50 +0000] [476] [INFO] Booting worker with pid: 476 +[2026-03-29 01:52:50 +0000] [444] [INFO] Started server process [444] +[2026-03-29 01:52:50 +0000] [444] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [444] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [479] [INFO] Booting worker with pid: 479 +[2026-03-29 01:52:50 +0000] [480] [INFO] Booting worker with pid: 480 +[2026-03-29 01:52:50 +0000] [481] [INFO] Booting worker with pid: 481 +[2026-03-29 01:52:50 +0000] [482] [INFO] Booting worker with pid: 482 +[2026-03-29 01:52:50 +0000] [437] [INFO] Started server process [437] +[2026-03-29 01:52:50 +0000] [437] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [437] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [484] [INFO] Booting worker with pid: 484 +[2026-03-29 01:52:50 +0000] [432] [INFO] Started server process [432] +[2026-03-29 01:52:50 +0000] [432] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [432] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [485] [INFO] Booting worker with pid: 485 +[2026-03-29 01:52:50 +0000] [486] [INFO] Booting worker with pid: 486 +[2026-03-29 01:52:50 +0000] [488] [INFO] Booting worker with pid: 488 +[2026-03-29 01:52:50 +0000] [470] [INFO] Started server process [470] +[2026-03-29 01:52:50 +0000] [470] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [470] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [461] [INFO] Started server process [461] +[2026-03-29 01:52:50 +0000] [461] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [461] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [421] [INFO] Started server process [421] +[2026-03-29 01:52:50 +0000] [421] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [421] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [458] [INFO] Started server process [458] +[2026-03-29 01:52:50 +0000] [458] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [458] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [454] [INFO] Started server process [454] +[2026-03-29 01:52:50 +0000] [454] [INFO] Waiting for application startup. +[2026-03-29 01:52:50 +0000] [454] [INFO] Application startup complete. +[2026-03-29 01:52:50 +0000] [463] [INFO] Started server process [463] +[2026-03-29 01:52:51 +0000] [463] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [463] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [459] [INFO] Started server process [459] +[2026-03-29 01:52:51 +0000] [459] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [459] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [464] [INFO] Started server process [464] +[2026-03-29 01:52:51 +0000] [464] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [464] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [422] [INFO] Started server process [422] +[2026-03-29 01:52:51 +0000] [422] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [422] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [475] [INFO] Started server process [475] +[2026-03-29 01:52:51 +0000] [475] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [475] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [448] [INFO] Started server process [448] +[2026-03-29 01:52:51 +0000] [448] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [448] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [479] [INFO] Started server process [479] +[2026-03-29 01:52:51 +0000] [479] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [479] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [476] [INFO] Started server process [476] +[2026-03-29 01:52:51 +0000] [476] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [476] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [443] [INFO] Started server process [443] +[2026-03-29 01:52:51 +0000] [443] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [443] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [471] [INFO] Started server process [471] +[2026-03-29 01:52:51 +0000] [471] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [471] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [451] [INFO] Started server process [451] +[2026-03-29 01:52:51 +0000] [451] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [451] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [481] [INFO] Started server process [481] +[2026-03-29 01:52:51 +0000] [481] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [481] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [434] [INFO] Started server process [434] +[2026-03-29 01:52:51 +0000] [434] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [434] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [467] [INFO] Started server process [467] +[2026-03-29 01:52:51 +0000] [467] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [467] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [429] [INFO] Started server process [429] +[2026-03-29 01:52:51 +0000] [429] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [332] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1066,16 +1041,14 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [283] [ERROR] Exception in ASGI application +[2026-03-29 01:52:51 +0000] [429] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [294] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1125,16 +1098,46 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [372] [ERROR] Exception in ASGI application +[2026-03-29 01:52:51 +0000] [469] [INFO] Started server process [469] +[2026-03-29 01:52:51 +0000] [469] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [469] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [468] [INFO] Started server process [468] +[2026-03-29 01:52:51 +0000] [468] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [468] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [480] [INFO] Started server process [480] +[2026-03-29 01:52:51 +0000] [480] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [480] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [456] [INFO] Started server process [456] +[2026-03-29 01:52:51 +0000] [456] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [456] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [453] [INFO] Started server process [453] +[2026-03-29 01:52:51 +0000] [453] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [453] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [482] [INFO] Started server process [482] +[2026-03-29 01:52:51 +0000] [482] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [482] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [473] [INFO] Started server process [473] +[2026-03-29 01:52:51 +0000] [473] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [473] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [488] [INFO] Started server process [488] +[2026-03-29 01:52:51 +0000] [488] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [488] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [485] [INFO] Started server process [485] +[2026-03-29 01:52:51 +0000] [485] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [485] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [484] [INFO] Started server process [484] +[2026-03-29 01:52:51 +0000] [484] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [484] [INFO] Application startup complete. +[2026-03-29 01:52:51 +0000] [486] [INFO] Started server process [486] +[2026-03-29 01:52:51 +0000] [486] [INFO] Waiting for application startup. +[2026-03-29 01:52:51 +0000] [486] [INFO] Application startup complete. +[2026-03-29 01:53:08 +0000] [434] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1184,16 +1187,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [190] [ERROR] Exception in ASGI application +[2026-03-29 01:53:08 +0000] [256] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1243,1614 +1243,9 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [235] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [140] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [277] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [158] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [423] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [496] [INFO] Started server process [496] -[2026-03-26 01:09:12 +0000] [496] [INFO] Waiting for application startup. -[2026-03-26 01:09:12 +0000] [496] [INFO] Application startup complete. -[2026-03-26 01:09:12 +0000] [177] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [281] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [68] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [369] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [369] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:12 +0000] [501] [INFO] Started server process [501] -[2026-03-26 01:09:12 +0000] [501] [INFO] Waiting for application startup. -[2026-03-26 01:09:12 +0000] [501] [INFO] Application startup complete. -[2026-03-26 01:09:12 +0000] [489] [INFO] Started server process [489] -[2026-03-26 01:09:12 +0000] [489] [INFO] Waiting for application startup. -[2026-03-26 01:09:12 +0000] [489] [INFO] Application startup complete. -[2026-03-26 01:09:29 +0000] [68] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:29 +0000] [399] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:29 +0000] [92] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:29 +0000] [229] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:29 +0000] [459] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [220] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [136] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [399] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [305] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [8] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [337] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [421] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [372] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [496] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [107] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [20] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 01:09:46 +0000] [20] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/applications.py", line 1054, in __call__ - await super().__call__(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 301, in app - raw_response = await run_endpoint_function( - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ...<3 lines>... - ) - ^ - File "/usr/local/lib/python3.13/site-packages/fastapi/routing.py", line 212, in run_endpoint_function - return await dependant.call(**values) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/app/app.py", line 155, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 240, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect diff --git a/site/static/logs/mixed/4096/flask.log b/site/static/logs/mixed/4096/flask.log index 68a05509..c25f7262 100644 --- a/site/static/logs/mixed/4096/flask.log +++ b/site/static/logs/mixed/4096/flask.log @@ -1,284 +1,259 @@ -[2026-03-26 01:17:50 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 01:17:50 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 01:17:50 +0000] [1] [INFO] Using worker: sync -[2026-03-26 01:17:50 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 01:17:50 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 01:17:50 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 01:17:50 +0000] [10] [INFO] Booting worker with pid: 10 -[2026-03-26 01:17:50 +0000] [11] [INFO] Booting worker with pid: 11 -[2026-03-26 01:17:50 +0000] [12] [INFO] Booting worker with pid: 12 -[2026-03-26 01:17:50 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 01:17:50 +0000] [14] [INFO] Booting worker with pid: 14 -[2026-03-26 01:17:50 +0000] [15] [INFO] Booting worker with pid: 15 -[2026-03-26 01:17:50 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 01:17:50 +0000] [17] [INFO] Booting worker with pid: 17 -[2026-03-26 01:17:50 +0000] [18] [INFO] Booting worker with pid: 18 -[2026-03-26 01:17:50 +0000] [19] [INFO] Booting worker with pid: 19 -[2026-03-26 01:17:50 +0000] [20] [INFO] Booting worker with pid: 20 -[2026-03-26 01:17:50 +0000] [21] [INFO] Booting worker with pid: 21 -[2026-03-26 01:17:50 +0000] [22] [INFO] Booting worker with pid: 22 -[2026-03-26 01:17:50 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 01:17:51 +0000] [24] [INFO] Booting worker with pid: 24 -[2026-03-26 01:17:51 +0000] [25] [INFO] Booting worker with pid: 25 -[2026-03-26 01:17:51 +0000] [26] [INFO] Booting worker with pid: 26 -[2026-03-26 01:17:51 +0000] [27] [INFO] Booting worker with pid: 27 -[2026-03-26 01:17:51 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 01:17:51 +0000] [29] [INFO] Booting worker with pid: 29 -[2026-03-26 01:17:51 +0000] [30] [INFO] Booting worker with pid: 30 -[2026-03-26 01:17:51 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 01:17:51 +0000] [32] [INFO] Booting worker with pid: 32 -[2026-03-26 01:17:51 +0000] [33] [INFO] Booting worker with pid: 33 -[2026-03-26 01:17:51 +0000] [34] [INFO] Booting worker with pid: 34 -[2026-03-26 01:17:51 +0000] [35] [INFO] Booting worker with pid: 35 -[2026-03-26 01:17:51 +0000] [36] [INFO] Booting worker with pid: 36 -[2026-03-26 01:17:51 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 01:17:51 +0000] [38] [INFO] Booting worker with pid: 38 -[2026-03-26 01:17:51 +0000] [39] [INFO] Booting worker with pid: 39 -[2026-03-26 01:17:51 +0000] [40] [INFO] Booting worker with pid: 40 -[2026-03-26 01:17:52 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 01:17:52 +0000] [42] [INFO] Booting worker with pid: 42 -[2026-03-26 01:17:52 +0000] [43] [INFO] Booting worker with pid: 43 -[2026-03-26 01:17:52 +0000] [44] [INFO] Booting worker with pid: 44 -[2026-03-26 01:17:52 +0000] [45] [INFO] Booting worker with pid: 45 -[2026-03-26 01:17:52 +0000] [46] [INFO] Booting worker with pid: 46 -[2026-03-26 01:17:52 +0000] [47] [INFO] Booting worker with pid: 47 -[2026-03-26 01:17:52 +0000] [48] [INFO] Booting worker with pid: 48 -[2026-03-26 01:17:52 +0000] [49] [INFO] Booting worker with pid: 49 -[2026-03-26 01:17:52 +0000] [50] [INFO] Booting worker with pid: 50 -[2026-03-26 01:17:52 +0000] [51] [INFO] Booting worker with pid: 51 -[2026-03-26 01:17:52 +0000] [52] [INFO] Booting worker with pid: 52 -[2026-03-26 01:17:52 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 01:17:52 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 01:17:52 +0000] [55] [INFO] Booting worker with pid: 55 -[2026-03-26 01:17:52 +0000] [56] [INFO] Booting worker with pid: 56 -[2026-03-26 01:17:52 +0000] [57] [INFO] Booting worker with pid: 57 -[2026-03-26 01:17:52 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 01:17:53 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 01:17:53 +0000] [60] [INFO] Booting worker with pid: 60 -[2026-03-26 01:17:53 +0000] [61] [INFO] Booting worker with pid: 61 -[2026-03-26 01:17:53 +0000] [62] [INFO] Booting worker with pid: 62 -[2026-03-26 01:17:53 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 01:17:53 +0000] [64] [INFO] Booting worker with pid: 64 -[2026-03-26 01:17:53 +0000] [65] [INFO] Booting worker with pid: 65 -[2026-03-26 01:17:53 +0000] [66] [INFO] Booting worker with pid: 66 -[2026-03-26 01:17:53 +0000] [67] [INFO] Booting worker with pid: 67 -[2026-03-26 01:17:53 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 01:17:53 +0000] [69] [INFO] Booting worker with pid: 69 -[2026-03-26 01:17:53 +0000] [70] [INFO] Booting worker with pid: 70 -[2026-03-26 01:17:53 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 01:17:53 +0000] [72] [INFO] Booting worker with pid: 72 -[2026-03-26 01:17:53 +0000] [73] [INFO] Booting worker with pid: 73 -[2026-03-26 01:17:53 +0000] [74] [INFO] Booting worker with pid: 74 -[2026-03-26 01:17:53 +0000] [75] [INFO] Booting worker with pid: 75 -[2026-03-26 01:17:53 +0000] [76] [INFO] Booting worker with pid: 76 -[2026-03-26 01:17:53 +0000] [77] [INFO] Booting worker with pid: 77 -[2026-03-26 01:17:53 +0000] [78] [INFO] Booting worker with pid: 78 -[2026-03-26 01:17:53 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 01:17:54 +0000] [80] [INFO] Booting worker with pid: 80 -[2026-03-26 01:17:54 +0000] [81] [INFO] Booting worker with pid: 81 -[2026-03-26 01:17:54 +0000] [82] [INFO] Booting worker with pid: 82 -[2026-03-26 01:17:54 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 01:17:54 +0000] [84] [INFO] Booting worker with pid: 84 -[2026-03-26 01:17:54 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 01:17:54 +0000] [86] [INFO] Booting worker with pid: 86 -[2026-03-26 01:17:54 +0000] [87] [INFO] Booting worker with pid: 87 -[2026-03-26 01:17:54 +0000] [88] [INFO] Booting worker with pid: 88 -[2026-03-26 01:17:54 +0000] [89] [INFO] Booting worker with pid: 89 -[2026-03-26 01:17:54 +0000] [90] [INFO] Booting worker with pid: 90 -[2026-03-26 01:17:54 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 01:17:54 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 01:17:54 +0000] [93] [INFO] Booting worker with pid: 93 -[2026-03-26 01:17:54 +0000] [94] [INFO] Booting worker with pid: 94 -[2026-03-26 01:17:54 +0000] [95] [INFO] Booting worker with pid: 95 -[2026-03-26 01:17:54 +0000] [96] [INFO] Booting worker with pid: 96 -[2026-03-26 01:17:54 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 01:17:54 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 01:17:54 +0000] [99] [INFO] Booting worker with pid: 99 -[2026-03-26 01:17:55 +0000] [100] [INFO] Booting worker with pid: 100 -[2026-03-26 01:17:55 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 01:17:55 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 01:17:55 +0000] [103] [INFO] Booting worker with pid: 103 -[2026-03-26 01:17:55 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 01:17:55 +0000] [105] [INFO] Booting worker with pid: 105 -[2026-03-26 01:17:55 +0000] [106] [INFO] Booting worker with pid: 106 -[2026-03-26 01:17:55 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 01:17:55 +0000] [108] [INFO] Booting worker with pid: 108 -[2026-03-26 01:17:55 +0000] [109] [INFO] Booting worker with pid: 109 -[2026-03-26 01:17:55 +0000] [110] [INFO] Booting worker with pid: 110 -[2026-03-26 01:17:55 +0000] [111] [INFO] Booting worker with pid: 111 -[2026-03-26 01:17:55 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 01:17:55 +0000] [113] [INFO] Booting worker with pid: 113 -[2026-03-26 01:17:55 +0000] [114] [INFO] Booting worker with pid: 114 -[2026-03-26 01:17:55 +0000] [115] [INFO] Booting worker with pid: 115 -[2026-03-26 01:17:55 +0000] [116] [INFO] Booting worker with pid: 116 -[2026-03-26 01:17:55 +0000] [117] [INFO] Booting worker with pid: 117 -[2026-03-26 01:17:55 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 01:17:55 +0000] [119] [INFO] Booting worker with pid: 119 -[2026-03-26 01:17:55 +0000] [120] [INFO] Booting worker with pid: 120 -[2026-03-26 01:17:55 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 01:17:56 +0000] [122] [INFO] Booting worker with pid: 122 -[2026-03-26 01:17:56 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 01:17:56 +0000] [124] [INFO] Booting worker with pid: 124 -[2026-03-26 01:17:56 +0000] [125] [INFO] Booting worker with pid: 125 -[2026-03-26 01:17:56 +0000] [126] [INFO] Booting worker with pid: 126 -[2026-03-26 01:17:56 +0000] [127] [INFO] Booting worker with pid: 127 -[2026-03-26 01:17:56 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 01:17:56 +0000] [129] [INFO] Booting worker with pid: 129 -[2026-03-26 01:17:56 +0000] [130] [INFO] Booting worker with pid: 130 -[2026-03-26 01:17:56 +0000] [131] [INFO] Booting worker with pid: 131 -[2026-03-26 01:17:56 +0000] [132] [INFO] Booting worker with pid: 132 -[2026-03-26 01:17:56 +0000] [133] [INFO] Booting worker with pid: 133 -[2026-03-26 01:17:56 +0000] [134] [INFO] Booting worker with pid: 134 -[2026-03-26 01:17:56 +0000] [135] [INFO] Booting worker with pid: 135 -[2026-03-26 01:17:56 +0000] [136] [INFO] Booting worker with pid: 136 -[2026-03-26 01:17:56 +0000] [137] [INFO] Booting worker with pid: 137 -[2026-03-26 01:17:56 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 01:17:56 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 01:17:57 +0000] [140] [INFO] Booting worker with pid: 140 -[2026-03-26 01:17:57 +0000] [141] [INFO] Booting worker with pid: 141 -[2026-03-26 01:17:57 +0000] [142] [INFO] Booting worker with pid: 142 -[2026-03-26 01:17:57 +0000] [143] [INFO] Booting worker with pid: 143 -[2026-03-26 01:17:57 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 01:17:57 +0000] [145] [INFO] Booting worker with pid: 145 -[2026-03-26 01:17:57 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 01:17:57 +0000] [147] [INFO] Booting worker with pid: 147 -[2026-03-26 01:17:57 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 01:17:57 +0000] [149] [INFO] Booting worker with pid: 149 -[2026-03-26 01:17:57 +0000] [150] [INFO] Booting worker with pid: 150 -[2026-03-26 01:17:57 +0000] [151] [INFO] Booting worker with pid: 151 -[2026-03-26 01:17:57 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 01:17:57 +0000] [153] [INFO] Booting worker with pid: 153 -[2026-03-26 01:17:57 +0000] [154] [INFO] Booting worker with pid: 154 -[2026-03-26 01:17:57 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 01:17:57 +0000] [156] [INFO] Booting worker with pid: 156 -[2026-03-26 01:17:57 +0000] [157] [INFO] Booting worker with pid: 157 -[2026-03-26 01:17:57 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 01:17:57 +0000] [159] [INFO] Booting worker with pid: 159 -[2026-03-26 01:17:57 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 01:17:58 +0000] [161] [INFO] Booting worker with pid: 161 -[2026-03-26 01:17:58 +0000] [162] [INFO] Booting worker with pid: 162 -[2026-03-26 01:17:58 +0000] [163] [INFO] Booting worker with pid: 163 -[2026-03-26 01:17:58 +0000] [164] [INFO] Booting worker with pid: 164 -[2026-03-26 01:17:58 +0000] [165] [INFO] Booting worker with pid: 165 -[2026-03-26 01:17:58 +0000] [166] [INFO] Booting worker with pid: 166 -[2026-03-26 01:17:58 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 01:17:58 +0000] [168] [INFO] Booting worker with pid: 168 -[2026-03-26 01:17:58 +0000] [169] [INFO] Booting worker with pid: 169 -[2026-03-26 01:17:58 +0000] [170] [INFO] Booting worker with pid: 170 -[2026-03-26 01:17:58 +0000] [171] [INFO] Booting worker with pid: 171 -[2026-03-26 01:17:58 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 01:17:58 +0000] [173] [INFO] Booting worker with pid: 173 -[2026-03-26 01:17:58 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 01:17:58 +0000] [175] [INFO] Booting worker with pid: 175 -[2026-03-26 01:17:58 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 01:17:58 +0000] [177] [INFO] Booting worker with pid: 177 -[2026-03-26 01:17:58 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 01:17:58 +0000] [179] [INFO] Booting worker with pid: 179 -[2026-03-26 01:17:58 +0000] [180] [INFO] Booting worker with pid: 180 -[2026-03-26 01:17:59 +0000] [181] [INFO] Booting worker with pid: 181 -[2026-03-26 01:17:59 +0000] [182] [INFO] Booting worker with pid: 182 -[2026-03-26 01:17:59 +0000] [183] [INFO] Booting worker with pid: 183 -[2026-03-26 01:17:59 +0000] [184] [INFO] Booting worker with pid: 184 -[2026-03-26 01:17:59 +0000] [185] [INFO] Booting worker with pid: 185 -[2026-03-26 01:17:59 +0000] [186] [INFO] Booting worker with pid: 186 -[2026-03-26 01:17:59 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 01:17:59 +0000] [188] [INFO] Booting worker with pid: 188 -[2026-03-26 01:17:59 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 01:17:59 +0000] [190] [INFO] Booting worker with pid: 190 -[2026-03-26 01:17:59 +0000] [191] [INFO] Booting worker with pid: 191 -[2026-03-26 01:17:59 +0000] [192] [INFO] Booting worker with pid: 192 -[2026-03-26 01:17:59 +0000] [193] [INFO] Booting worker with pid: 193 -[2026-03-26 01:17:59 +0000] [194] [INFO] Booting worker with pid: 194 -[2026-03-26 01:17:59 +0000] [195] [INFO] Booting worker with pid: 195 -[2026-03-26 01:17:59 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 01:18:00 +0000] [197] [INFO] Booting worker with pid: 197 -[2026-03-26 01:18:00 +0000] [198] [INFO] Booting worker with pid: 198 -[2026-03-26 01:18:00 +0000] [199] [INFO] Booting worker with pid: 199 -[2026-03-26 01:18:00 +0000] [200] [INFO] Booting worker with pid: 200 -[2026-03-26 01:18:00 +0000] [201] [INFO] Booting worker with pid: 201 -[2026-03-26 01:18:00 +0000] [202] [INFO] Booting worker with pid: 202 -[2026-03-26 01:18:00 +0000] [203] [INFO] Booting worker with pid: 203 -[2026-03-26 01:18:00 +0000] [204] [INFO] Booting worker with pid: 204 -[2026-03-26 01:18:00 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 01:18:00 +0000] [206] [INFO] Booting worker with pid: 206 -[2026-03-26 01:18:00 +0000] [207] [INFO] Booting worker with pid: 207 -[2026-03-26 01:18:00 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 01:18:00 +0000] [209] [INFO] Booting worker with pid: 209 -[2026-03-26 01:18:00 +0000] [210] [INFO] Booting worker with pid: 210 -[2026-03-26 01:18:00 +0000] [211] [INFO] Booting worker with pid: 211 -[2026-03-26 01:18:00 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 01:18:00 +0000] [213] [INFO] Booting worker with pid: 213 -[2026-03-26 01:18:01 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 01:18:01 +0000] [215] [INFO] Booting worker with pid: 215 -[2026-03-26 01:18:01 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 01:18:01 +0000] [217] [INFO] Booting worker with pid: 217 -[2026-03-26 01:18:01 +0000] [218] [INFO] Booting worker with pid: 218 -[2026-03-26 01:18:01 +0000] [219] [INFO] Booting worker with pid: 219 -[2026-03-26 01:18:01 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 01:18:01 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 01:18:01 +0000] [222] [INFO] Booting worker with pid: 222 -[2026-03-26 01:18:01 +0000] [223] [INFO] Booting worker with pid: 223 -[2026-03-26 01:18:01 +0000] [224] [INFO] Booting worker with pid: 224 -[2026-03-26 01:18:01 +0000] [225] [INFO] Booting worker with pid: 225 -[2026-03-26 01:18:01 +0000] [226] [INFO] Booting worker with pid: 226 -[2026-03-26 01:18:01 +0000] [227] [INFO] Booting worker with pid: 227 -[2026-03-26 01:18:01 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 01:18:01 +0000] [229] [INFO] Booting worker with pid: 229 -[2026-03-26 01:18:01 +0000] [230] [INFO] Booting worker with pid: 230 -[2026-03-26 01:18:01 +0000] [231] [INFO] Booting worker with pid: 231 -[2026-03-26 01:18:01 +0000] [232] [INFO] Booting worker with pid: 232 -[2026-03-26 01:18:02 +0000] [233] [INFO] Booting worker with pid: 233 -[2026-03-26 01:18:02 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 01:18:02 +0000] [235] [INFO] Booting worker with pid: 235 -[2026-03-26 01:18:02 +0000] [236] [INFO] Booting worker with pid: 236 -[2026-03-26 01:18:02 +0000] [237] [INFO] Booting worker with pid: 237 -[2026-03-26 01:18:02 +0000] [238] [INFO] Booting worker with pid: 238 -[2026-03-26 01:18:02 +0000] [239] [INFO] Booting worker with pid: 239 -[2026-03-26 01:18:02 +0000] [240] [INFO] Booting worker with pid: 240 -[2026-03-26 01:18:02 +0000] [241] [INFO] Booting worker with pid: 241 -[2026-03-26 01:18:02 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 01:18:02 +0000] [243] [INFO] Booting worker with pid: 243 -[2026-03-26 01:18:02 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 01:18:02 +0000] [245] [INFO] Booting worker with pid: 245 -[2026-03-26 01:18:02 +0000] [246] [INFO] Booting worker with pid: 246 -[2026-03-26 01:18:02 +0000] [247] [INFO] Booting worker with pid: 247 -[2026-03-26 01:18:03 +0000] [248] [INFO] Booting worker with pid: 248 -[2026-03-26 01:18:03 +0000] [249] [INFO] Booting worker with pid: 249 -[2026-03-26 01:18:03 +0000] [250] [INFO] Booting worker with pid: 250 -[2026-03-26 01:18:03 +0000] [251] [INFO] Booting worker with pid: 251 -[2026-03-26 01:18:03 +0000] [252] [INFO] Booting worker with pid: 252 -[2026-03-26 01:18:03 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 01:18:03 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 01:18:03 +0000] [255] [INFO] Booting worker with pid: 255 -[2026-03-26 01:18:03 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 01:18:03 +0000] [257] [INFO] Booting worker with pid: 257 -[2026-03-26 01:18:03 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 01:18:03 +0000] [259] [INFO] Booting worker with pid: 259 -[2026-03-26 01:18:03 +0000] [260] [INFO] Booting worker with pid: 260 -[2026-03-26 01:18:03 +0000] [261] [INFO] Booting worker with pid: 261 -[2026-03-26 01:18:03 +0000] [262] [INFO] Booting worker with pid: 262 -[2026-03-26 01:18:06,133] ERROR in app: Exception on /upload [POST] -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app - response = self.full_dispatch_request() - File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request - rv = self.handle_user_exception(e) - File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request - rv = self.dispatch_request() - File "/usr/local/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request - return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ - File "/app/app.py", line 146, in upload_endpoint - data = request.get_data() - File "/usr/local/lib/python3.13/site-packages/werkzeug/wrappers/request.py", line 422, in get_data - rv = self.stream.read() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 221, in read - data = self.reader.read(1024) - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/body.py", line 136, in read - data = self.unreader.read() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 36, in read - d = self.chunk() - File "/usr/local/lib/python3.13/site-packages/gunicorn/http/unreader.py", line 63, in chunk - return self.sock.recv(self.mxchunk) - ~~~~~~~~~~~~~~^^^^^^^^^^^^^^ -ConnectionResetError: [Errno 104] Connection reset by peer +[2026-03-29 02:03:44 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 02:03:44 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 02:03:44 +0000] [1] [INFO] Using worker: sync +[2026-03-29 02:03:44 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 02:03:44 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 02:03:45 +0000] [10] [INFO] Booting worker with pid: 10 +[2026-03-29 02:03:45 +0000] [11] [INFO] Booting worker with pid: 11 +[2026-03-29 02:03:45 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 02:03:45 +0000] [13] [INFO] Booting worker with pid: 13 +[2026-03-29 02:03:45 +0000] [14] [INFO] Booting worker with pid: 14 +[2026-03-29 02:03:45 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 02:03:45 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 02:03:45 +0000] [17] [INFO] Booting worker with pid: 17 +[2026-03-29 02:03:45 +0000] [18] [INFO] Booting worker with pid: 18 +[2026-03-29 02:03:45 +0000] [19] [INFO] Booting worker with pid: 19 +[2026-03-29 02:03:45 +0000] [20] [INFO] Booting worker with pid: 20 +[2026-03-29 02:03:45 +0000] [21] [INFO] Booting worker with pid: 21 +[2026-03-29 02:03:45 +0000] [22] [INFO] Booting worker with pid: 22 +[2026-03-29 02:03:45 +0000] [23] [INFO] Booting worker with pid: 23 +[2026-03-29 02:03:45 +0000] [24] [INFO] Booting worker with pid: 24 +[2026-03-29 02:03:45 +0000] [25] [INFO] Booting worker with pid: 25 +[2026-03-29 02:03:45 +0000] [26] [INFO] Booting worker with pid: 26 +[2026-03-29 02:03:45 +0000] [27] [INFO] Booting worker with pid: 27 +[2026-03-29 02:03:45 +0000] [28] [INFO] Booting worker with pid: 28 +[2026-03-29 02:03:45 +0000] [29] [INFO] Booting worker with pid: 29 +[2026-03-29 02:03:45 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 02:03:45 +0000] [31] [INFO] Booting worker with pid: 31 +[2026-03-29 02:03:45 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 02:03:45 +0000] [33] [INFO] Booting worker with pid: 33 +[2026-03-29 02:03:45 +0000] [34] [INFO] Booting worker with pid: 34 +[2026-03-29 02:03:46 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 02:03:46 +0000] [36] [INFO] Booting worker with pid: 36 +[2026-03-29 02:03:46 +0000] [37] [INFO] Booting worker with pid: 37 +[2026-03-29 02:03:46 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 02:03:46 +0000] [39] [INFO] Booting worker with pid: 39 +[2026-03-29 02:03:46 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 02:03:46 +0000] [41] [INFO] Booting worker with pid: 41 +[2026-03-29 02:03:46 +0000] [42] [INFO] Booting worker with pid: 42 +[2026-03-29 02:03:46 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 02:03:46 +0000] [44] [INFO] Booting worker with pid: 44 +[2026-03-29 02:03:46 +0000] [45] [INFO] Booting worker with pid: 45 +[2026-03-29 02:03:46 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 02:03:46 +0000] [47] [INFO] Booting worker with pid: 47 +[2026-03-29 02:03:46 +0000] [48] [INFO] Booting worker with pid: 48 +[2026-03-29 02:03:46 +0000] [49] [INFO] Booting worker with pid: 49 +[2026-03-29 02:03:46 +0000] [50] [INFO] Booting worker with pid: 50 +[2026-03-29 02:03:46 +0000] [51] [INFO] Booting worker with pid: 51 +[2026-03-29 02:03:46 +0000] [52] [INFO] Booting worker with pid: 52 +[2026-03-29 02:03:47 +0000] [53] [INFO] Booting worker with pid: 53 +[2026-03-29 02:03:47 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 02:03:47 +0000] [55] [INFO] Booting worker with pid: 55 +[2026-03-29 02:03:47 +0000] [56] [INFO] Booting worker with pid: 56 +[2026-03-29 02:03:47 +0000] [57] [INFO] Booting worker with pid: 57 +[2026-03-29 02:03:47 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 02:03:47 +0000] [59] [INFO] Booting worker with pid: 59 +[2026-03-29 02:03:47 +0000] [60] [INFO] Booting worker with pid: 60 +[2026-03-29 02:03:47 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 02:03:47 +0000] [62] [INFO] Booting worker with pid: 62 +[2026-03-29 02:03:47 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 02:03:47 +0000] [64] [INFO] Booting worker with pid: 64 +[2026-03-29 02:03:47 +0000] [65] [INFO] Booting worker with pid: 65 +[2026-03-29 02:03:47 +0000] [66] [INFO] Booting worker with pid: 66 +[2026-03-29 02:03:47 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 02:03:47 +0000] [68] [INFO] Booting worker with pid: 68 +[2026-03-29 02:03:47 +0000] [69] [INFO] Booting worker with pid: 69 +[2026-03-29 02:03:48 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 02:03:48 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 02:03:48 +0000] [72] [INFO] Booting worker with pid: 72 +[2026-03-29 02:03:48 +0000] [73] [INFO] Booting worker with pid: 73 +[2026-03-29 02:03:48 +0000] [74] [INFO] Booting worker with pid: 74 +[2026-03-29 02:03:48 +0000] [75] [INFO] Booting worker with pid: 75 +[2026-03-29 02:03:48 +0000] [76] [INFO] Booting worker with pid: 76 +[2026-03-29 02:03:48 +0000] [77] [INFO] Booting worker with pid: 77 +[2026-03-29 02:03:48 +0000] [78] [INFO] Booting worker with pid: 78 +[2026-03-29 02:03:48 +0000] [79] [INFO] Booting worker with pid: 79 +[2026-03-29 02:03:48 +0000] [80] [INFO] Booting worker with pid: 80 +[2026-03-29 02:03:48 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 02:03:48 +0000] [82] [INFO] Booting worker with pid: 82 +[2026-03-29 02:03:48 +0000] [83] [INFO] Booting worker with pid: 83 +[2026-03-29 02:03:48 +0000] [84] [INFO] Booting worker with pid: 84 +[2026-03-29 02:03:48 +0000] [85] [INFO] Booting worker with pid: 85 +[2026-03-29 02:03:48 +0000] [86] [INFO] Booting worker with pid: 86 +[2026-03-29 02:03:48 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 02:03:48 +0000] [88] [INFO] Booting worker with pid: 88 +[2026-03-29 02:03:49 +0000] [89] [INFO] Booting worker with pid: 89 +[2026-03-29 02:03:49 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 02:03:49 +0000] [91] [INFO] Booting worker with pid: 91 +[2026-03-29 02:03:49 +0000] [92] [INFO] Booting worker with pid: 92 +[2026-03-29 02:03:49 +0000] [93] [INFO] Booting worker with pid: 93 +[2026-03-29 02:03:49 +0000] [94] [INFO] Booting worker with pid: 94 +[2026-03-29 02:03:49 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 02:03:49 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 02:03:49 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 02:03:49 +0000] [98] [INFO] Booting worker with pid: 98 +[2026-03-29 02:03:49 +0000] [99] [INFO] Booting worker with pid: 99 +[2026-03-29 02:03:49 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 02:03:49 +0000] [101] [INFO] Booting worker with pid: 101 +[2026-03-29 02:03:49 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 02:03:49 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 02:03:49 +0000] [104] [INFO] Booting worker with pid: 104 +[2026-03-29 02:03:49 +0000] [105] [INFO] Booting worker with pid: 105 +[2026-03-29 02:03:50 +0000] [106] [INFO] Booting worker with pid: 106 +[2026-03-29 02:03:50 +0000] [107] [INFO] Booting worker with pid: 107 +[2026-03-29 02:03:50 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 02:03:50 +0000] [109] [INFO] Booting worker with pid: 109 +[2026-03-29 02:03:50 +0000] [110] [INFO] Booting worker with pid: 110 +[2026-03-29 02:03:50 +0000] [111] [INFO] Booting worker with pid: 111 +[2026-03-29 02:03:50 +0000] [112] [INFO] Booting worker with pid: 112 +[2026-03-29 02:03:50 +0000] [113] [INFO] Booting worker with pid: 113 +[2026-03-29 02:03:50 +0000] [114] [INFO] Booting worker with pid: 114 +[2026-03-29 02:03:50 +0000] [115] [INFO] Booting worker with pid: 115 +[2026-03-29 02:03:50 +0000] [116] [INFO] Booting worker with pid: 116 +[2026-03-29 02:03:50 +0000] [117] [INFO] Booting worker with pid: 117 +[2026-03-29 02:03:50 +0000] [118] [INFO] Booting worker with pid: 118 +[2026-03-29 02:03:50 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 02:03:50 +0000] [120] [INFO] Booting worker with pid: 120 +[2026-03-29 02:03:50 +0000] [121] [INFO] Booting worker with pid: 121 +[2026-03-29 02:03:50 +0000] [122] [INFO] Booting worker with pid: 122 +[2026-03-29 02:03:50 +0000] [123] [INFO] Booting worker with pid: 123 +[2026-03-29 02:03:50 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 02:03:50 +0000] [125] [INFO] Booting worker with pid: 125 +[2026-03-29 02:03:51 +0000] [126] [INFO] Booting worker with pid: 126 +[2026-03-29 02:03:51 +0000] [127] [INFO] Booting worker with pid: 127 +[2026-03-29 02:03:51 +0000] [128] [INFO] Booting worker with pid: 128 +[2026-03-29 02:03:51 +0000] [129] [INFO] Booting worker with pid: 129 +[2026-03-29 02:03:51 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 02:03:51 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 02:03:51 +0000] [132] [INFO] Booting worker with pid: 132 +[2026-03-29 02:03:51 +0000] [133] [INFO] Booting worker with pid: 133 +[2026-03-29 02:03:51 +0000] [134] [INFO] Booting worker with pid: 134 +[2026-03-29 02:03:51 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 02:03:51 +0000] [136] [INFO] Booting worker with pid: 136 +[2026-03-29 02:03:51 +0000] [137] [INFO] Booting worker with pid: 137 +[2026-03-29 02:03:51 +0000] [138] [INFO] Booting worker with pid: 138 +[2026-03-29 02:03:51 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 02:03:51 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 02:03:51 +0000] [141] [INFO] Booting worker with pid: 141 +[2026-03-29 02:03:51 +0000] [142] [INFO] Booting worker with pid: 142 +[2026-03-29 02:03:51 +0000] [143] [INFO] Booting worker with pid: 143 +[2026-03-29 02:03:51 +0000] [144] [INFO] Booting worker with pid: 144 +[2026-03-29 02:03:52 +0000] [145] [INFO] Booting worker with pid: 145 +[2026-03-29 02:03:52 +0000] [146] [INFO] Booting worker with pid: 146 +[2026-03-29 02:03:52 +0000] [147] [INFO] Booting worker with pid: 147 +[2026-03-29 02:03:52 +0000] [148] [INFO] Booting worker with pid: 148 +[2026-03-29 02:03:52 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 02:03:52 +0000] [150] [INFO] Booting worker with pid: 150 +[2026-03-29 02:03:52 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 02:03:52 +0000] [152] [INFO] Booting worker with pid: 152 +[2026-03-29 02:03:52 +0000] [153] [INFO] Booting worker with pid: 153 +[2026-03-29 02:03:52 +0000] [154] [INFO] Booting worker with pid: 154 +[2026-03-29 02:03:52 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 02:03:52 +0000] [156] [INFO] Booting worker with pid: 156 +[2026-03-29 02:03:52 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 02:03:52 +0000] [158] [INFO] Booting worker with pid: 158 +[2026-03-29 02:03:52 +0000] [159] [INFO] Booting worker with pid: 159 +[2026-03-29 02:03:52 +0000] [160] [INFO] Booting worker with pid: 160 +[2026-03-29 02:03:52 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 02:03:52 +0000] [162] [INFO] Booting worker with pid: 162 +[2026-03-29 02:03:52 +0000] [163] [INFO] Booting worker with pid: 163 +[2026-03-29 02:03:53 +0000] [164] [INFO] Booting worker with pid: 164 +[2026-03-29 02:03:53 +0000] [165] [INFO] Booting worker with pid: 165 +[2026-03-29 02:03:53 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 02:03:53 +0000] [167] [INFO] Booting worker with pid: 167 +[2026-03-29 02:03:53 +0000] [168] [INFO] Booting worker with pid: 168 +[2026-03-29 02:03:53 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 02:03:53 +0000] [170] [INFO] Booting worker with pid: 170 +[2026-03-29 02:03:53 +0000] [171] [INFO] Booting worker with pid: 171 +[2026-03-29 02:03:53 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 02:03:53 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 02:03:53 +0000] [174] [INFO] Booting worker with pid: 174 +[2026-03-29 02:03:53 +0000] [175] [INFO] Booting worker with pid: 175 +[2026-03-29 02:03:53 +0000] [176] [INFO] Booting worker with pid: 176 +[2026-03-29 02:03:53 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 02:03:53 +0000] [178] [INFO] Booting worker with pid: 178 +[2026-03-29 02:03:53 +0000] [179] [INFO] Booting worker with pid: 179 +[2026-03-29 02:03:54 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 02:03:54 +0000] [181] [INFO] Booting worker with pid: 181 +[2026-03-29 02:03:54 +0000] [182] [INFO] Booting worker with pid: 182 +[2026-03-29 02:03:54 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 02:03:54 +0000] [184] [INFO] Booting worker with pid: 184 +[2026-03-29 02:03:54 +0000] [185] [INFO] Booting worker with pid: 185 +[2026-03-29 02:03:54 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 02:03:54 +0000] [187] [INFO] Booting worker with pid: 187 +[2026-03-29 02:03:54 +0000] [188] [INFO] Booting worker with pid: 188 +[2026-03-29 02:03:54 +0000] [189] [INFO] Booting worker with pid: 189 +[2026-03-29 02:03:54 +0000] [190] [INFO] Booting worker with pid: 190 +[2026-03-29 02:03:54 +0000] [191] [INFO] Booting worker with pid: 191 +[2026-03-29 02:03:54 +0000] [192] [INFO] Booting worker with pid: 192 +[2026-03-29 02:03:54 +0000] [193] [INFO] Booting worker with pid: 193 +[2026-03-29 02:03:54 +0000] [194] [INFO] Booting worker with pid: 194 +[2026-03-29 02:03:54 +0000] [195] [INFO] Booting worker with pid: 195 +[2026-03-29 02:03:54 +0000] [196] [INFO] Booting worker with pid: 196 +[2026-03-29 02:03:55 +0000] [197] [INFO] Booting worker with pid: 197 +[2026-03-29 02:03:55 +0000] [198] [INFO] Booting worker with pid: 198 +[2026-03-29 02:03:55 +0000] [199] [INFO] Booting worker with pid: 199 +[2026-03-29 02:03:55 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 02:03:55 +0000] [201] [INFO] Booting worker with pid: 201 +[2026-03-29 02:03:55 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 02:03:55 +0000] [203] [INFO] Booting worker with pid: 203 +[2026-03-29 02:03:55 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 02:03:55 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 02:03:55 +0000] [206] [INFO] Booting worker with pid: 206 +[2026-03-29 02:03:55 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 02:03:55 +0000] [208] [INFO] Booting worker with pid: 208 +[2026-03-29 02:03:55 +0000] [209] [INFO] Booting worker with pid: 209 +[2026-03-29 02:03:55 +0000] [210] [INFO] Booting worker with pid: 210 +[2026-03-29 02:03:55 +0000] [211] [INFO] Booting worker with pid: 211 +[2026-03-29 02:03:55 +0000] [212] [INFO] Booting worker with pid: 212 +[2026-03-29 02:03:55 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 02:03:55 +0000] [214] [INFO] Booting worker with pid: 214 +[2026-03-29 02:03:56 +0000] [215] [INFO] Booting worker with pid: 215 +[2026-03-29 02:03:56 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 02:03:56 +0000] [217] [INFO] Booting worker with pid: 217 +[2026-03-29 02:03:56 +0000] [218] [INFO] Booting worker with pid: 218 +[2026-03-29 02:03:56 +0000] [219] [INFO] Booting worker with pid: 219 +[2026-03-29 02:03:56 +0000] [220] [INFO] Booting worker with pid: 220 +[2026-03-29 02:03:56 +0000] [221] [INFO] Booting worker with pid: 221 +[2026-03-29 02:03:56 +0000] [222] [INFO] Booting worker with pid: 222 +[2026-03-29 02:03:56 +0000] [223] [INFO] Booting worker with pid: 223 +[2026-03-29 02:03:56 +0000] [224] [INFO] Booting worker with pid: 224 +[2026-03-29 02:03:56 +0000] [225] [INFO] Booting worker with pid: 225 +[2026-03-29 02:03:56 +0000] [226] [INFO] Booting worker with pid: 226 +[2026-03-29 02:03:56 +0000] [227] [INFO] Booting worker with pid: 227 +[2026-03-29 02:03:56 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 02:03:56 +0000] [229] [INFO] Booting worker with pid: 229 +[2026-03-29 02:03:56 +0000] [230] [INFO] Booting worker with pid: 230 +[2026-03-29 02:03:56 +0000] [231] [INFO] Booting worker with pid: 231 +[2026-03-29 02:03:56 +0000] [232] [INFO] Booting worker with pid: 232 +[2026-03-29 02:03:56 +0000] [233] [INFO] Booting worker with pid: 233 +[2026-03-29 02:03:57 +0000] [234] [INFO] Booting worker with pid: 234 +[2026-03-29 02:03:57 +0000] [235] [INFO] Booting worker with pid: 235 +[2026-03-29 02:03:57 +0000] [236] [INFO] Booting worker with pid: 236 +[2026-03-29 02:03:57 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 02:03:57 +0000] [238] [INFO] Booting worker with pid: 238 +[2026-03-29 02:03:57 +0000] [239] [INFO] Booting worker with pid: 239 +[2026-03-29 02:03:57 +0000] [240] [INFO] Booting worker with pid: 240 +[2026-03-29 02:03:57 +0000] [241] [INFO] Booting worker with pid: 241 +[2026-03-29 02:03:57 +0000] [242] [INFO] Booting worker with pid: 242 +[2026-03-29 02:03:57 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 02:03:57 +0000] [244] [INFO] Booting worker with pid: 244 +[2026-03-29 02:03:57 +0000] [245] [INFO] Booting worker with pid: 245 +[2026-03-29 02:03:57 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 02:03:57 +0000] [247] [INFO] Booting worker with pid: 247 +[2026-03-29 02:03:57 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 02:03:57 +0000] [249] [INFO] Booting worker with pid: 249 +[2026-03-29 02:03:57 +0000] [250] [INFO] Booting worker with pid: 250 +[2026-03-29 02:03:57 +0000] [251] [INFO] Booting worker with pid: 251 +[2026-03-29 02:03:58 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 02:03:58 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 02:03:58 +0000] [254] [INFO] Booting worker with pid: 254 +[2026-03-29 02:03:58 +0000] [255] [INFO] Booting worker with pid: 255 +[2026-03-29 02:03:58 +0000] [256] [INFO] Booting worker with pid: 256 +[2026-03-29 02:03:58 +0000] [257] [INFO] Booting worker with pid: 257 +[2026-03-29 02:03:58 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 02:03:58 +0000] [259] [INFO] Booting worker with pid: 259 +[2026-03-29 02:03:58 +0000] [260] [INFO] Booting worker with pid: 260 +[2026-03-29 02:03:58 +0000] [261] [INFO] Booting worker with pid: 261 +[2026-03-29 02:03:58 +0000] [262] [INFO] Booting worker with pid: 262 +[2026-03-29 02:03:58 +0000] [263] [INFO] Booting worker with pid: 263 diff --git a/site/static/logs/mixed/4096/hono-bun.log b/site/static/logs/mixed/4096/hono-bun.log index 4adfbcd8..bfa54fcc 100644 --- a/site/static/logs/mixed/4096/hono-bun.log +++ b/site/static/logs/mixed/4096/hono-bun.log @@ -510,867 +510,3 @@ DOMException { DATA_CLONE_ERR: 25, toString: [Function: toString], } -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} -DOMException { - stack: "", - code: 20, - name: "AbortError", - message: "The connection was closed.", - INDEX_SIZE_ERR: 1, - DOMSTRING_SIZE_ERR: 2, - HIERARCHY_REQUEST_ERR: 3, - WRONG_DOCUMENT_ERR: 4, - INVALID_CHARACTER_ERR: 5, - NO_DATA_ALLOWED_ERR: 6, - NO_MODIFICATION_ALLOWED_ERR: 7, - NOT_FOUND_ERR: 8, - NOT_SUPPORTED_ERR: 9, - INUSE_ATTRIBUTE_ERR: 10, - INVALID_STATE_ERR: 11, - SYNTAX_ERR: 12, - INVALID_MODIFICATION_ERR: 13, - NAMESPACE_ERR: 14, - INVALID_ACCESS_ERR: 15, - VALIDATION_ERR: 16, - TYPE_MISMATCH_ERR: 17, - SECURITY_ERR: 18, - NETWORK_ERR: 19, - ABORT_ERR: 20, - URL_MISMATCH_ERR: 21, - QUOTA_EXCEEDED_ERR: 22, - TIMEOUT_ERR: 23, - INVALID_NODE_TYPE_ERR: 24, - DATA_CLONE_ERR: 25, - toString: [Function: toString], -} diff --git a/site/static/logs/mixed/4096/humming-bird.log b/site/static/logs/mixed/4096/humming-bird.log index d4928bb3..93c75d17 100644 --- a/site/static/logs/mixed/4096/humming-bird.log +++ b/site/static/logs/mixed/4096/humming-bird.log @@ -1 +1 @@ -2026-03-27T16:39:47+0000 info hummingbird: [HummingbirdCore] Server started and listening on 0.0.0.0:8080 +2026-03-29T02:26:22+0000 info hummingbird: [HummingbirdCore] Server started and listening on 0.0.0.0:8080 diff --git a/site/static/logs/mixed/4096/kemal.log b/site/static/logs/mixed/4096/kemal.log index a24416c2..018b7541 100644 --- a/site/static/logs/mixed/4096/kemal.log +++ b/site/static/logs/mixed/4096/kemal.log @@ -1,16 +1,5 @@ from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.904770Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -19,7 +8,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.904801Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.782981Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -31,7 +20,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.922613Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.787130Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -48,7 +37,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.922640Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.787152Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -60,7 +49,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.926237Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.810094Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -77,7 +66,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.926267Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.810120Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -89,7 +78,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.957881Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.776321Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -106,20 +95,20 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.957911Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.776341Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.814956Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' - from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from ??? -2026-03-26T01:40:41.946853Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -135,7 +124,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.946877Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.814976Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -147,7 +136,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.968327Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.832270Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -164,7 +153,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.968352Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.832296Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -176,7 +165,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.973674Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.833957Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -193,7 +182,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.973704Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.833984Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -205,7 +194,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.832138Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.807294Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -222,7 +211,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.832170Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.807318Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -234,8 +223,11 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.852639Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.820990Z ERROR - kemal: Closed stream Closed stream (IO::Error) +2026-03-29T02:30:19.764989Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -251,7 +243,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.852667Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.821014Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -261,14 +253,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.873231Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:30:19.765005Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -280,20 +273,16 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.873256Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.767563Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from ??? -2026-03-26T01:40:41.906119Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -309,7 +298,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.906144Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.767587Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -319,10 +308,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.931577Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from ??? +2026-03-29T02:30:19.784676Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -338,7 +327,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.931604Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.784700Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -350,7 +339,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.935732Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.811645Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -367,7 +356,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.935757Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.811669Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -379,7 +368,9 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.940116Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.691775Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:30:19.725166Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -393,11 +384,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:40:41.940143Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -407,14 +393,19 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:41.974558Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' + from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.691799Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' + from ??? + +2026-03-29T02:30:19.725191Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -425,20 +416,18 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.974584Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.696182Z ERROR - kemal: Closed stream from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.993073Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -452,9 +441,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.799345Z ERROR - kemal: Closed stream from ??? -2026-03-26T01:40:41.993101Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.696218Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -466,8 +457,6 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.040088Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -483,7 +472,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.040105Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.799370Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -492,12 +481,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.838186Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from ??? - -2026-03-26T01:40:42.044216Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -512,21 +499,28 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.838219Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:30:19.841877Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.966014Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -534,6 +528,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.841901Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -544,7 +542,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.966044Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.794430Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -555,11 +553,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from ??? - from ??? - -2026-03-26T01:40:42.044243Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.794446Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -571,7 +571,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.975106Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.817519Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -581,15 +581,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.893007Z ERROR - kemal: Closed stream -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.817535Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -600,7 +600,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.893030Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.823324Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -611,32 +611,25 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.899752Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:30:19.823350Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.975130Z ERROR - http.server: Unhandled exception on HTTP::Handler - from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.899778Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.799438Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -650,17 +643,22 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' + from ??? +2026-03-29T02:30:19.799457Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.984073Z ERROR - kemal: Closed stream from /app/server in '??' from ??? -Closed stream (IO::Error -) -2026-03-26T01:40:41.968484Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.719319Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -677,7 +675,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.984094Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.719342Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -687,6 +685,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.823316Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -696,16 +698,14 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.968512Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' -Closed stream (IO::Error from ??? -) + from ??? +2026-03-29T02:30:19.823341Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -716,7 +716,7 @@ Closed stream (IO::Error from ??? from /app/server in '??' from ??? -2026-03-26T01:40:41.961754Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.771046Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -733,7 +733,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.961779Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.771069Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -745,7 +745,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.980519Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.799781Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -762,7 +762,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.980544Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.799806Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -774,42 +774,44 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.960008Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.821931Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:30:19.834898Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.953905Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.960038Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.822013Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.834922Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -820,8 +822,6 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.953934Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -832,11 +832,13 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.983986Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.852488Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.852834Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -847,39 +849,39 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.984003Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) -2026-03-26T01:40:42.051052Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.852859Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.853071Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.051069Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.852514Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) +Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -887,10 +889,12 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' +) from ??? -2026-03-26T01:40:41.895288Z ERROR - kemal: Closed stream + from /app/server in '??' + from /app/server in '??' +2026-03-29T02:30:19.787281Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -907,7 +911,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.895313Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.787307Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -919,7 +923,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.903268Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.791386Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -936,7 +940,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.903295Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.791407Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -948,15 +952,10 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -965,15 +964,16 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.823340Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + +2026-03-29T02:30:19.853093Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -982,8 +982,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.050120Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.823384Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) +Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -991,15 +993,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:40:42.050137Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.853745Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1009,9 +1009,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1019,7 +1017,12 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) + +2026-03-29T02:30:19.853770Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) +2026-03-29T02:30:19.815722Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1028,8 +1031,8 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.982712Z ERROR - kemal: Closed stream -Closed stream (IO::Error) + + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1045,7 +1048,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.982748Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.815744Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1055,9 +1058,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' from ??? -2026-03-26T01:40:41.988015Z ERROR - kemal: Closed stream + from /app/server in '??' + from ??? + +2026-03-29T02:30:19.842897Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1074,7 +1081,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.988043Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.842921Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1086,27 +1093,22 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:30:19.836991Z ERROR - kemal: Closed stream +Closed stream (IO::Error2026-03-29T02:30:19.819296Z ERROR - kemal: Closed stream +) +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' -2026-03-26T01:40:41.993870Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -2026-03-26T01:40:41.888649Z ERROR - kemal: Closed stream -Closed stream (IO::Error) -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1121,6 +1123,14 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from ??? + + +2026-03-29T02:30:19.837015Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.819321Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::ErrorClosed stream (IO::Error) +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1134,12 +1144,14 @@ Closed stream (IO::Error) from ??? from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.993900Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) -2026-03-26T01:40:41.888678Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.830626Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1155,13 +1167,20 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' +2026-03-29T02:30:19.830648Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.892329Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.824264Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1178,7 +1197,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.892349Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.824290Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1190,7 +1209,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.909537Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.829890Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1207,7 +1226,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.909567Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.829914Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1219,7 +1238,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.061538Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.839135Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1236,7 +1255,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.061563Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.839160Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1248,9 +1267,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.043319Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:30:19.809485Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1265,14 +1283,9 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.809502Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1283,7 +1296,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:40:42.043336Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.812403Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1292,7 +1305,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1300,7 +1312,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.812418Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1308,13 +1322,11 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from ??? -2026-03-26T01:40:42.039679Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:30:19.848752Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1329,7 +1341,17 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.848778Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' +2026-03-29T02:30:19.862020Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1347,8 +1369,9 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:40:42.039698Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.862046Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) + from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1359,7 +1382,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.043478Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.808912Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1376,7 +1400,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.043494Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.808937Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1388,7 +1412,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.061247Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.853123Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1405,7 +1429,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.061265Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.853151Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1417,7 +1441,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.769306Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1425,7 +1457,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.769330Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1434,7 +1469,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.978638Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.800360Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1451,7 +1487,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.978666Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.800386Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1463,7 +1499,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.983881Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.804568Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1480,7 +1516,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.983908Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.804593Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1490,9 +1526,9 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:42.067089Z ERROR - kemal: Closed stream from ??? +2026-03-29T02:30:19.751712Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1509,7 +1545,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.067106Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.751737Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1521,7 +1557,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.956756Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.854688Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1538,7 +1574,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.956785Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.854714Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1550,7 +1586,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.960807Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.855853Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1567,7 +1603,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.960849Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.855877Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1579,7 +1615,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.843258Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.840378Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1596,40 +1632,42 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.843286Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.840402Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.789392Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.847225Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.789417Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) +2026-03-29T02:30:19.840361Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1642,7 +1680,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:40:41.847250Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.840386Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1654,7 +1692,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.851279Z ERROR - kemal: Closed stream + from /app/server in '??' +2026-03-29T02:30:19.844712Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1669,21 +1708,30 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from ??? -2026-03-26T01:40:41.851303Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.844739Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.875678Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.794786Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1700,7 +1748,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.875787Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.794810Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1708,11 +1756,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.745520Z ERROR - kemal: Closed stream from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:40:41.879675Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1727,14 +1772,14 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' from ??? -2026-03-26T01:40:41.879750Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.745544Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) -2026-03-26T01:40:42.061430Z ERROR - kemal: Closed stream + from ??? + from /app/server in '??' from /app/server in '??' -Closed stream (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1743,6 +1788,11 @@ Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from ??? +2026-03-29T02:30:19.749087Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.844325Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1753,13 +1803,6 @@ Closed stream (IO::Error from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:40:42.061449Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1769,25 +1812,23 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? + from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.749110Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.844351Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1795,24 +1836,25 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' +2026-03-29T02:30:19.789880Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1821,7 +1863,11 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:30:19.789905Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1829,7 +1875,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) + +2026-03-29T02:30:19.805483Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1837,8 +1885,6 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1846,7 +1892,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.805509Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1855,15 +1904,15 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:30:19.843878Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1872,20 +1921,20 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.843905Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.985181Z ERROR - kemal: Closed stream + from ??? + +2026-03-29T02:30:19.736295Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1895,10 +1944,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1906,7 +1951,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.985207Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.736311Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1918,8 +1963,9 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.073707Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:30:19.740021Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1934,15 +1980,9 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.740037Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -1951,7 +1991,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.025687Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.771172Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1968,7 +2009,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.025714Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.771198Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1980,7 +2021,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.069102Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.830108Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -1997,7 +2038,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.069119Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.830133Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2009,9 +2050,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.899887Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.811886Z ERROR - kemal: Closed stream Closed stream (IO::Error) -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2026,8 +2066,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? + +2026-03-29T02:30:19.811911Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' -Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2035,16 +2077,15 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.815458Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.899913Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2055,7 +2096,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.905405Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.815480Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2065,28 +2106,26 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.819036Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? - -2026-03-26T01:40:41.905429Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.909776Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.819062Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2096,19 +2135,16 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' + +2026-03-29T02:30:19.835479Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2118,10 +2154,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:40:41.909800Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.835506Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2129,7 +2165,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.874973Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2143,12 +2181,11 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from ??? - -2026-03-26T01:40:41.927832Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2164,7 +2201,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.927862Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.874999Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2176,7 +2213,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.934914Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.824420Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2193,7 +2230,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.934939Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.824445Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2205,7 +2242,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.010270Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.810646Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2222,7 +2259,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.010302Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.810671Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2234,24 +2271,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.850287Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2260,7 +2287,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.973736Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.850310Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) +2026-03-29T02:30:19.850959Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2275,9 +2305,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' from ??? -2026-03-26T01:40:41.973762Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.850984Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2288,18 +2319,20 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' - from ??? -2026-03-26T01:40:41.978882Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.840182Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:30:19.849421Z ERROR - kemal: Closed stream Closed stream (IO::Error) -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2313,19 +2346,24 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.978908Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.849437Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2336,14 +2374,21 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? +2026-03-29T02:30:19.840214Z ERROR - http.server: Unhandled exception on HTTP::Handler -2026-03-26T01:40:41.996839Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:30:19.852813Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2352,7 +2397,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2360,7 +2404,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.996869Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.852837Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2372,15 +2416,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.880708Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2389,8 +2433,9 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.076710Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2406,7 +2451,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.076748Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.880732Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2418,15 +2463,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.802989Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2435,15 +2479,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.803011Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2452,7 +2491,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.070297Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.805756Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2469,7 +2509,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.070312Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.805777Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2481,7 +2521,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.078412Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.830593Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2491,9 +2531,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2501,7 +2538,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from ??? -2026-03-26T01:40:42.078428Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.830610Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2513,12 +2550,11 @@ Closed stream (IO::Error) from /app/server in '??' from ??? +2026-03-29T02:30:19.837937Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.761714Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +Closed stream (IO::Error from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2526,33 +2562,37 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.761741Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) +) from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError from /app/server in '??' from /app/server in '??' -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from ??? + +2026-03-29T02:30:19.840567Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:30:19.874438Z ERROR - kemal: Closed stream + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2561,36 +2601,36 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' + from /app/server in '??' +2026-03-29T02:30:19.840590Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.837961Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' -2026-03-26T01:40:42.079444Z ERROR - kemal: Closed stream from /app/server in '??' -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2598,12 +2638,16 @@ Closed stream (IO::Error) from /app/server in '??' from ??? from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.874455Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2612,8 +2656,6 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.079458Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2624,7 +2666,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.953953Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.884348Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2641,7 +2683,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.953981Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.884364Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2653,9 +2695,8 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.029581Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:30:19.819987Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2670,14 +2711,9 @@ Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.820012Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2688,7 +2724,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:40:42.029605Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.848521Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2696,18 +2732,17 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:42.059575Z ERROR - kemal: Error while flushing data to the client from /app/server in '??' from /app/server in '??' -Error while flushing data to the client (HTTP::Server::ClientError from ??? - -) - from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.848547Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2717,9 +2752,9 @@ Error while flushing data to the client (HTTP::Server::ClientError from ??? from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.767229Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2735,7 +2770,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? -2026-03-26T01:40:42.059592Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.767253Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2747,32 +2782,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.772059Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2781,15 +2798,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.772082Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2798,7 +2810,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.024838Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.809014Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2815,7 +2828,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.024856Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.809037Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2827,7 +2840,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.064380Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.828735Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2844,7 +2857,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.064400Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.828757Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2856,7 +2869,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.067960Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.690455Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2873,7 +2886,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.067975Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.690481Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2885,7 +2898,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.076657Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.850673Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2902,7 +2915,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.076671Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.850760Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -2914,31 +2927,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.075448Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.891085Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' - from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2947,13 +2944,11 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.997762Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2966,10 +2961,9 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.891102Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2980,16 +2974,14 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from ??? - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.817252Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -2998,7 +2990,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.997787Z ERROR - http.server: Unhandled exception on HTTP::Handler + +2026-03-29T02:30:19.817277Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3010,7 +3003,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.021316Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.835954Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3027,7 +3020,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.021341Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.835981Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3039,15 +3032,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.774986Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3056,15 +3048,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.775010Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3073,7 +3060,8 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.078082Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.794404Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3090,7 +3078,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.078103Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.794428Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3102,30 +3090,25 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.824090Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -2026-03-26T01:40:41.973316Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.824108Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3136,36 +3119,32 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.973343Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:30:19.814134Z ERROR - kemal: Closed stream Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3173,7 +3152,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) + +2026-03-29T02:30:19.814175Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3182,7 +3164,8 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.079404Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.881866Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3199,7 +3182,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.079419Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.881887Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3211,15 +3194,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.849704Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3228,15 +3210,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.849731Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3245,11 +3222,9 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' + +2026-03-29T02:30:19.858856Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3257,18 +3232,16 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::ErrorCaused by: Error writing to socket (#): Connection reset by peer (IO::Error) -) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.858881Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3278,8 +3251,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? - from ??? -2026-03-26T01:40:42.090459Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.904856Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:30:19.816119Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3296,27 +3271,17 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.090473Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.904870Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3325,12 +3290,16 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.059386Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' +2026-03-29T02:30:19.816145Z ERROR - http.server: Unhandled exception on HTTP::Handler from /app/server in '??' +Closed stream (IO::Error from ??? +) + from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3341,7 +3310,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:40:42.075057Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.820439Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3358,7 +3327,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.075072Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.820461Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3370,7 +3339,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.095023Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.824920Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3387,7 +3356,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.095038Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.824943Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3399,24 +3368,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -2026-03-26T01:40:42.064271Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.850814Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3433,7 +3385,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.064301Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.850839Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3445,7 +3397,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.069248Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.896250Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3462,7 +3414,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.069270Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.896266Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3474,12 +3426,25 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.086247Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:30:19.831856Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from ??? + +2026-03-29T02:30:19.831881Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3490,7 +3455,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:40:42.094861Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.740710Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3507,7 +3472,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.094874Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.740732Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3519,15 +3484,14 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.867649Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3535,10 +3499,9 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -2026-03-26T01:40:42.079537Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3550,14 +3513,14 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:42.087465Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.867674Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3568,16 +3531,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:40:42.096482Z ERROR - kemal: Closed stream -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.882251Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3586,7 +3548,9 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3602,7 +3566,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.096495Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.882275Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3614,15 +3578,11 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.883637Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3630,16 +3590,14 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3647,8 +3605,6 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3656,7 +3612,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.883655Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3665,7 +3624,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.997858Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.819460Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3682,7 +3642,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.997927Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.819484Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3694,7 +3654,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.966611Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.848237Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3711,7 +3671,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.966632Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.848264Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3723,7 +3683,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.971131Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.883619Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3740,24 +3700,23 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.971147Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.883637Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.984471Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3765,12 +3724,13 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:41.984493Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:30:19.878167Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3779,16 +3739,14 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.999475Z ERROR - kemal: Closed stream -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3796,10 +3754,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.999494Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3810,7 +3764,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.063456Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.878193Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -3820,15 +3774,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' from ??? -2026-03-26T01:40:42.063473Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:30:19.913492Z ERROR - kemal: Error while flushing data to the client +Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3837,9 +3786,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3847,33 +3793,28 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +2026-03-29T02:30:19.913509Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3881,8 +3822,8 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3890,8 +3831,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.107141Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3899,6 +3839,8 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3906,10 +3848,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.107155Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3918,7 +3857,6 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' @@ -3927,7 +3865,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3936,15 +3874,16 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' +2026-03-29T02:30:19.917325Z ERROR - kemal: Closed stream +Closed stream (IO::Error) +2026-03-29T02:30:19.917088Z ERROR - kemal: Closed stream from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +Closed stream (IO::Error from /app/server in '??' +) from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3953,15 +3892,14 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' + +2026-03-29T02:30:19.917342Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3970,7 +3908,10 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3978,7 +3919,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) + +2026-03-29T02:30:19.917102Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -3987,15 +3931,15 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:30:19.813893Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4004,7 +3948,11 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:30:19.813918Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4012,7 +3960,9 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.822753Z ERROR - kemal: Closed stream +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4020,8 +3970,6 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4029,7 +3977,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) + +2026-03-29T02:30:19.822775Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4038,8 +3989,10 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.106654Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.841852Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4054,12 +4007,8 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:40:42.108784Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.841878Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4070,13 +4019,16 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from ??? -2026-03-26T01:40:42.109780Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:30:19.920240Z ERROR - kemal: Closed stream +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4085,8 +4037,6 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.110467Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4103,7 +4053,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.110480Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.920254Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4115,7 +4065,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.104950Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.928234Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4132,7 +4082,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.104964Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.928249Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4144,14 +4094,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.098424Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4160,8 +4111,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.098437Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.917190Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4171,9 +4121,14 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from ??? -2026-03-26T01:40:41.916531Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.917242Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4183,16 +4138,17 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? - -2026-03-26T01:40:41.916558Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4201,8 +4157,7 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:41.933944Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.933273Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4219,7 +4174,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.933973Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.933285Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4231,7 +4186,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.975956Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.842864Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4248,7 +4203,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:41.975981Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.842889Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4260,15 +4215,16 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.107699Z ERROR - kemal: Error while flushing data to the client -Error while flushing data to the client (HTTP::Server::ClientError) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from ??? +Caused by: Error writing to socket (#): Broken pipe (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4276,7 +4232,8 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +2026-03-29T02:30:19.933913Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4284,19 +4241,21 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4304,6 +4263,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4311,10 +4272,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.107712Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4323,14 +4281,15 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.072228Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4339,8 +4298,7 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.082208Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.938699Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4357,7 +4315,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.082223Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.938715Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4377,7 +4335,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4394,7 +4352,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4411,7 +4369,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4428,7 +4386,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4445,7 +4403,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Broken pipe (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4454,13 +4412,15 @@ Caused by: Error writing to socket (#): Broken pipe (I from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.116536Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4469,7 +4429,6 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' @@ -4478,7 +4437,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4495,7 +4454,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4512,7 +4471,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4521,32 +4480,30 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) - from /app/server in '??' - from /app/server in '??' +2026-03-29T02:30:19.939776Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? from /app/server in '??' + from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4563,7 +4520,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4580,7 +4537,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4597,7 +4554,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4606,7 +4563,13 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.951444Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4614,7 +4577,13 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.951822Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4623,7 +4592,8 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.124312Z ERROR - kemal: Closed stream + +2026-03-29T02:30:19.939843Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4640,7 +4610,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.124329Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.939856Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4652,13 +4622,12 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.112144Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.915446Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4670,7 +4639,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from ??? -2026-03-26T01:40:42.112158Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.915460Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4679,6 +4648,10 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' + from /app/server in '??' + from ??? + +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4686,19 +4659,16 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) - from /app/server in '??' +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' - from ??? from /app/server in '??' from ??? - -2026-03-26T01:40:42.106005Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.932130Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4715,7 +4685,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.106020Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.932144Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4727,7 +4697,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.128520Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.938299Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4744,7 +4714,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.128533Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.938312Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4756,7 +4726,15 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) +2026-03-29T02:30:19.941430Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4764,7 +4742,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.941442Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4773,7 +4754,16 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + +2026-03-29T02:30:19.845622Z ERROR - kemal: Closed stream +Closed stream (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4781,7 +4771,10 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) + +2026-03-29T02:30:19.845644Z ERROR - http.server: Unhandled exception on HTTP::Handler +Closed stream (IO::Error) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4790,6 +4783,7 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? + Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' @@ -4798,7 +4792,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4815,7 +4809,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4832,7 +4826,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Broken pipe (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4849,7 +4843,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4866,7 +4860,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4883,7 +4877,7 @@ Unhandled exception in spawn: Error while flushing data to the client (HTTP::Ser from /app/server in '??' from /app/server in '??' from ??? -Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4892,13 +4886,15 @@ Caused by: Error writing to socket (#): Connection res from /app/server in '??' from /app/server in '??' from ??? -2026-03-26T01:40:42.115944Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4907,14 +4903,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.116884Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4923,14 +4920,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.117082Z ERROR - kemal: Error reading socket (#): Connection reset by peer -Error reading socket (#): Connection reset by peer (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4939,15 +4937,15 @@ Error reading socket (#): Connection reset by peer (IO from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.119175Z ERROR - kemal: Closed stream -Closed stream (IO::Error) +Unhandled exception in spawn: Error while flushing data to the client (HTTP::Server::ClientError) from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' + from ??? +Caused by: Error writing to socket (#): Connection reset by peer (IO::Error) from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4956,9 +4954,11 @@ Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' from ??? - -2026-03-26T01:40:42.119187Z ERROR - http.server: Unhandled exception on HTTP::Handler -Closed stream (IO::Error) +2026-03-29T02:30:19.975225Z ERROR - kemal: Error reading socket (#): Connection reset by peer +Error reading socket (#): Connection reset by peer (IO::Error) + from /app/server in '??' + from /app/server in '??' + from /app/server in '??' from /app/server in '??' from /app/server in '??' from /app/server in '??' @@ -4969,7 +4969,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.139241Z ERROR - kemal: Closed stream +2026-03-29T02:30:19.965828Z ERROR - kemal: Closed stream Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' @@ -4986,7 +4986,7 @@ Closed stream (IO::Error) from /app/server in '??' from ??? -2026-03-26T01:40:42.139254Z ERROR - http.server: Unhandled exception on HTTP::Handler +2026-03-29T02:30:19.965843Z ERROR - http.server: Unhandled exception on HTTP::Handler Closed stream (IO::Error) from /app/server in '??' from /app/server in '??' diff --git a/site/static/logs/mixed/4096/quarkus-jvm.log b/site/static/logs/mixed/4096/quarkus-jvm.log index eaf7d73d..d3d22269 100644 --- a/site/static/logs/mixed/4096/quarkus-jvm.log +++ b/site/static/logs/mixed/4096/quarkus-jvm.log @@ -1,4 +1,4 @@ -[0.001s][warning][os] NUMA support disabled: Failed to initialize libnuma +[0.015s][warning][os] NUMA support disabled: Failed to initialize libnuma WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::allocateMemory has been called by io.netty.util.internal.PlatformDependent0$2 (file:/app/lib/main/io.netty.netty-common-4.1.115.Final.jar) WARNING: Please consider reporting this to the maintainers of class io.netty.util.internal.PlatformDependent0$2 diff --git a/site/static/logs/mixed/4096/rails.log b/site/static/logs/mixed/4096/rails.log index 1b0d6a39..56250a20 100644 --- a/site/static/logs/mixed/4096/rails.log +++ b/site/static/logs/mixed/4096/rails.log @@ -13,131 +13,131 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 8) booted in 0.35s, phase: 0 -[1] - Worker 1 (PID: 12) booted in 0.35s, phase: 0 -[1] - Worker 2 (PID: 16) booted in 0.34s, phase: 0 -[1] - Worker 3 (PID: 20) booted in 0.34s, phase: 0 -[1] - Worker 4 (PID: 24) booted in 0.34s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.34s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.34s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.33s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.33s, phase: 0 -[1] - Worker 9 (PID: 50) booted in 0.33s, phase: 0 -[1] - Worker 10 (PID: 58) booted in 0.33s, phase: 0 -[1] - Worker 11 (PID: 64) booted in 0.32s, phase: 0 -[1] - Worker 12 (PID: 70) booted in 0.32s, phase: 0 -[1] - Worker 13 (PID: 76) booted in 0.32s, phase: 0 -[1] - Worker 14 (PID: 86) booted in 0.31s, phase: 0 -[1] - Worker 15 (PID: 91) booted in 0.31s, phase: 0 -[1] - Worker 16 (PID: 97) booted in 0.31s, phase: 0 -[1] - Worker 17 (PID: 102) booted in 0.3s, phase: 0 -[1] - Worker 18 (PID: 108) booted in 0.3s, phase: 0 -[1] - Worker 19 (PID: 114) booted in 0.3s, phase: 0 -[1] - Worker 20 (PID: 119) booted in 0.3s, phase: 0 -[1] - Worker 21 (PID: 124) booted in 0.3s, phase: 0 -[1] - Worker 22 (PID: 129) booted in 0.29s, phase: 0 -[1] - Worker 23 (PID: 137) booted in 0.29s, phase: 0 -[1] - Worker 24 (PID: 141) booted in 0.29s, phase: 0 -[1] - Worker 25 (PID: 147) booted in 0.29s, phase: 0 -[1] - Worker 26 (PID: 153) booted in 0.28s, phase: 0 -[1] - Worker 27 (PID: 158) booted in 0.28s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.28s, phase: 0 -[1] - Worker 29 (PID: 172) booted in 0.28s, phase: 0 -[1] - Worker 30 (PID: 180) booted in 0.27s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.27s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.27s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.27s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.26s, phase: 0 -[1] - Worker 35 (PID: 205) booted in 0.26s, phase: 0 -[1] - Worker 36 (PID: 211) booted in 0.26s, phase: 0 -[1] - Worker 37 (PID: 217) booted in 0.26s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.26s, phase: 0 -[1] - Worker 39 (PID: 227) booted in 0.26s, phase: 0 -[1] - Worker 40 (PID: 233) booted in 0.25s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.25s, phase: 0 -[1] - Worker 42 (PID: 245) booted in 0.25s, phase: 0 -[1] - Worker 43 (PID: 251) booted in 0.25s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.24s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.24s, phase: 0 -[1] - Worker 46 (PID: 269) booted in 0.24s, phase: 0 -[1] - Worker 47 (PID: 275) booted in 0.24s, phase: 0 -[1] - Worker 48 (PID: 281) booted in 0.24s, phase: 0 -[1] - Worker 49 (PID: 287) booted in 0.23s, phase: 0 -[1] - Worker 50 (PID: 293) booted in 0.23s, phase: 0 -[1] - Worker 51 (PID: 299) booted in 0.23s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.23s, phase: 0 -[1] - Worker 53 (PID: 311) booted in 0.23s, phase: 0 -[1] - Worker 54 (PID: 317) booted in 0.22s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.22s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.22s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.22s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.22s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.21s, phase: 0 -[1] - Worker 60 (PID: 354) booted in 0.21s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.21s, phase: 0 -[1] - Worker 62 (PID: 365) booted in 0.21s, phase: 0 -[1] - Worker 63 (PID: 371) booted in 0.2s, phase: 0 -[1] - Worker 64 (PID: 377) booted in 0.2s, phase: 0 -[1] - Worker 65 (PID: 383) booted in 0.2s, phase: 0 -[1] - Worker 66 (PID: 389) booted in 0.2s, phase: 0 -[1] - Worker 67 (PID: 395) booted in 0.2s, phase: 0 -[1] - Worker 68 (PID: 401) booted in 0.19s, phase: 0 -[1] - Worker 69 (PID: 408) booted in 0.19s, phase: 0 -[1] - Worker 70 (PID: 413) booted in 0.19s, phase: 0 +[1] - Worker 0 (PID: 8) booted in 0.37s, phase: 0 +[1] - Worker 1 (PID: 12) booted in 0.37s, phase: 0 +[1] - Worker 2 (PID: 16) booted in 0.37s, phase: 0 +[1] - Worker 3 (PID: 20) booted in 0.37s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.37s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.36s, phase: 0 +[1] - Worker 6 (PID: 34) booted in 0.36s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.36s, phase: 0 +[1] - Worker 8 (PID: 45) booted in 0.36s, phase: 0 +[1] - Worker 9 (PID: 52) booted in 0.35s, phase: 0 +[1] - Worker 10 (PID: 58) booted in 0.35s, phase: 0 +[1] - Worker 11 (PID: 64) booted in 0.35s, phase: 0 +[1] - Worker 12 (PID: 70) booted in 0.34s, phase: 0 +[1] - Worker 13 (PID: 77) booted in 0.34s, phase: 0 +[1] - Worker 14 (PID: 85) booted in 0.34s, phase: 0 +[1] - Worker 15 (PID: 91) booted in 0.34s, phase: 0 +[1] - Worker 16 (PID: 95) booted in 0.33s, phase: 0 +[1] - Worker 17 (PID: 101) booted in 0.33s, phase: 0 +[1] - Worker 18 (PID: 106) booted in 0.33s, phase: 0 +[1] - Worker 19 (PID: 112) booted in 0.33s, phase: 0 +[1] - Worker 20 (PID: 119) booted in 0.32s, phase: 0 +[1] - Worker 21 (PID: 124) booted in 0.32s, phase: 0 +[1] - Worker 22 (PID: 130) booted in 0.32s, phase: 0 +[1] - Worker 23 (PID: 134) booted in 0.32s, phase: 0 +[1] - Worker 24 (PID: 141) booted in 0.32s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.31s, phase: 0 +[1] - Worker 26 (PID: 153) booted in 0.31s, phase: 0 +[1] - Worker 27 (PID: 158) booted in 0.31s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.31s, phase: 0 +[1] - Worker 29 (PID: 172) booted in 0.31s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.3s, phase: 0 +[1] - Worker 31 (PID: 185) booted in 0.3s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.3s, phase: 0 +[1] - Worker 33 (PID: 197) booted in 0.3s, phase: 0 +[1] - Worker 34 (PID: 202) booted in 0.29s, phase: 0 +[1] - Worker 35 (PID: 208) booted in 0.29s, phase: 0 +[1] - Worker 36 (PID: 213) booted in 0.29s, phase: 0 +[1] - Worker 37 (PID: 220) booted in 0.29s, phase: 0 +[1] - Worker 38 (PID: 225) booted in 0.28s, phase: 0 +[1] - Worker 39 (PID: 232) booted in 0.28s, phase: 0 +[1] - Worker 40 (PID: 237) booted in 0.28s, phase: 0 +[1] - Worker 41 (PID: 244) booted in 0.27s, phase: 0 +[1] - Worker 42 (PID: 251) booted in 0.27s, phase: 0 +[1] - Worker 43 (PID: 257) booted in 0.27s, phase: 0 +[1] - Worker 44 (PID: 263) booted in 0.26s, phase: 0 +[1] - Worker 45 (PID: 268) booted in 0.26s, phase: 0 +[1] - Worker 46 (PID: 276) booted in 0.26s, phase: 0 +[1] - Worker 47 (PID: 281) booted in 0.25s, phase: 0 +[1] - Worker 48 (PID: 289) booted in 0.25s, phase: 0 +[1] - Worker 49 (PID: 294) booted in 0.25s, phase: 0 +[1] - Worker 50 (PID: 299) booted in 0.24s, phase: 0 +[1] - Worker 51 (PID: 306) booted in 0.24s, phase: 0 +[1] - Worker 52 (PID: 311) booted in 0.24s, phase: 0 +[1] - Worker 53 (PID: 316) booted in 0.23s, phase: 0 +[1] - Worker 54 (PID: 322) booted in 0.23s, phase: 0 +[1] - Worker 55 (PID: 327) booted in 0.23s, phase: 0 +[1] - Worker 56 (PID: 332) booted in 0.23s, phase: 0 +[1] - Worker 57 (PID: 339) booted in 0.22s, phase: 0 +[1] - Worker 58 (PID: 345) booted in 0.22s, phase: 0 +[1] - Worker 59 (PID: 352) booted in 0.22s, phase: 0 +[1] - Worker 60 (PID: 358) booted in 0.21s, phase: 0 +[1] - Worker 61 (PID: 366) booted in 0.21s, phase: 0 +[1] - Worker 62 (PID: 373) booted in 0.2s, phase: 0 +[1] - Worker 63 (PID: 377) booted in 0.2s, phase: 0 +[1] - Worker 64 (PID: 383) booted in 0.2s, phase: 0 +[1] - Worker 65 (PID: 388) booted in 0.2s, phase: 0 +[1] - Worker 66 (PID: 394) booted in 0.2s, phase: 0 +[1] - Worker 67 (PID: 399) booted in 0.19s, phase: 0 +[1] - Worker 68 (PID: 403) booted in 0.19s, phase: 0 +[1] - Worker 69 (PID: 409) booted in 0.19s, phase: 0 +[1] - Worker 70 (PID: 415) booted in 0.19s, phase: 0 [1] - Worker 71 (PID: 420) booted in 0.19s, phase: 0 -[1] - Worker 72 (PID: 426) booted in 0.19s, phase: 0 -[1] - Worker 73 (PID: 431) booted in 0.18s, phase: 0 -[1] - Worker 74 (PID: 437) booted in 0.18s, phase: 0 -[1] - Worker 75 (PID: 444) booted in 0.19s, phase: 0 -[1] - Worker 76 (PID: 449) booted in 0.19s, phase: 0 -[1] - Worker 77 (PID: 455) booted in 0.18s, phase: 0 -[1] - Worker 78 (PID: 461) booted in 0.18s, phase: 0 -[1] - Worker 79 (PID: 468) booted in 0.18s, phase: 0 -[1] - Worker 80 (PID: 474) booted in 0.18s, phase: 0 -[1] - Worker 81 (PID: 481) booted in 0.18s, phase: 0 -[1] - Worker 82 (PID: 489) booted in 0.17s, phase: 0 -[1] - Worker 83 (PID: 495) booted in 0.17s, phase: 0 -[1] - Worker 84 (PID: 501) booted in 0.17s, phase: 0 -[1] - Worker 85 (PID: 506) booted in 0.17s, phase: 0 -[1] - Worker 86 (PID: 513) booted in 0.16s, phase: 0 -[1] - Worker 87 (PID: 519) booted in 0.16s, phase: 0 -[1] - Worker 88 (PID: 527) booted in 0.16s, phase: 0 -[1] - Worker 89 (PID: 532) booted in 0.15s, phase: 0 -[1] - Worker 90 (PID: 538) booted in 0.15s, phase: 0 -[1] - Worker 91 (PID: 545) booted in 0.15s, phase: 0 -[1] - Worker 92 (PID: 551) booted in 0.15s, phase: 0 -[1] - Worker 93 (PID: 555) booted in 0.14s, phase: 0 -[1] - Worker 94 (PID: 561) booted in 0.14s, phase: 0 -[1] - Worker 95 (PID: 567) booted in 0.14s, phase: 0 -[1] - Worker 96 (PID: 573) booted in 0.13s, phase: 0 -[1] - Worker 97 (PID: 581) booted in 0.13s, phase: 0 -[1] - Worker 98 (PID: 586) booted in 0.13s, phase: 0 -[1] - Worker 99 (PID: 592) booted in 0.12s, phase: 0 -[1] - Worker 100 (PID: 597) booted in 0.12s, phase: 0 -[1] - Worker 101 (PID: 603) booted in 0.12s, phase: 0 -[1] - Worker 102 (PID: 609) booted in 0.12s, phase: 0 -[1] - Worker 103 (PID: 615) booted in 0.12s, phase: 0 -[1] - Worker 104 (PID: 621) booted in 0.11s, phase: 0 -[1] - Worker 105 (PID: 626) booted in 0.11s, phase: 0 -[1] - Worker 106 (PID: 631) booted in 0.11s, phase: 0 -[1] - Worker 107 (PID: 638) booted in 0.11s, phase: 0 -[1] - Worker 108 (PID: 644) booted in 0.1s, phase: 0 +[1] - Worker 72 (PID: 428) booted in 0.18s, phase: 0 +[1] - Worker 73 (PID: 434) booted in 0.18s, phase: 0 +[1] - Worker 74 (PID: 440) booted in 0.18s, phase: 0 +[1] - Worker 75 (PID: 447) booted in 0.17s, phase: 0 +[1] - Worker 76 (PID: 452) booted in 0.17s, phase: 0 +[1] - Worker 77 (PID: 458) booted in 0.17s, phase: 0 +[1] - Worker 78 (PID: 465) booted in 0.17s, phase: 0 +[1] - Worker 79 (PID: 471) booted in 0.16s, phase: 0 +[1] - Worker 80 (PID: 477) booted in 0.16s, phase: 0 +[1] - Worker 81 (PID: 484) booted in 0.16s, phase: 0 +[1] - Worker 82 (PID: 490) booted in 0.15s, phase: 0 +[1] - Worker 83 (PID: 496) booted in 0.15s, phase: 0 +[1] - Worker 84 (PID: 501) booted in 0.15s, phase: 0 +[1] - Worker 85 (PID: 507) booted in 0.15s, phase: 0 +[1] - Worker 86 (PID: 513) booted in 0.14s, phase: 0 +[1] - Worker 87 (PID: 520) booted in 0.14s, phase: 0 +[1] - Worker 88 (PID: 524) booted in 0.14s, phase: 0 +[1] - Worker 89 (PID: 531) booted in 0.15s, phase: 0 +[1] - Worker 90 (PID: 536) booted in 0.14s, phase: 0 +[1] - Worker 91 (PID: 543) booted in 0.14s, phase: 0 +[1] - Worker 92 (PID: 548) booted in 0.14s, phase: 0 +[1] - Worker 93 (PID: 554) booted in 0.14s, phase: 0 +[1] - Worker 94 (PID: 560) booted in 0.14s, phase: 0 +[1] - Worker 95 (PID: 566) booted in 0.13s, phase: 0 +[1] - Worker 96 (PID: 571) booted in 0.13s, phase: 0 +[1] - Worker 97 (PID: 578) booted in 0.13s, phase: 0 +[1] - Worker 98 (PID: 583) booted in 0.13s, phase: 0 +[1] - Worker 99 (PID: 590) booted in 0.12s, phase: 0 +[1] - Worker 100 (PID: 595) booted in 0.12s, phase: 0 +[1] - Worker 101 (PID: 600) booted in 0.12s, phase: 0 +[1] - Worker 102 (PID: 606) booted in 0.12s, phase: 0 +[1] - Worker 103 (PID: 613) booted in 0.12s, phase: 0 +[1] - Worker 104 (PID: 619) booted in 0.12s, phase: 0 +[1] - Worker 105 (PID: 625) booted in 0.11s, phase: 0 +[1] - Worker 106 (PID: 630) booted in 0.11s, phase: 0 +[1] - Worker 107 (PID: 637) booted in 0.11s, phase: 0 +[1] - Worker 108 (PID: 642) booted in 0.11s, phase: 0 [1] - Worker 109 (PID: 649) booted in 0.1s, phase: 0 [1] - Worker 110 (PID: 655) booted in 0.1s, phase: 0 [1] - Worker 111 (PID: 660) booted in 0.1s, phase: 0 -[1] - Worker 112 (PID: 666) booted in 0.09s, phase: 0 -[1] - Worker 113 (PID: 671) booted in 0.09s, phase: 0 -[1] - Worker 114 (PID: 678) booted in 0.09s, phase: 0 -[1] - Worker 115 (PID: 683) booted in 0.09s, phase: 0 -[1] - Worker 116 (PID: 689) booted in 0.09s, phase: 0 -[1] - Worker 117 (PID: 695) booted in 0.08s, phase: 0 -[1] - Worker 118 (PID: 701) booted in 0.08s, phase: 0 -[1] - Worker 119 (PID: 708) booted in 0.08s, phase: 0 -[1] - Worker 120 (PID: 713) booted in 0.08s, phase: 0 -[1] - Worker 121 (PID: 720) booted in 0.08s, phase: 0 -[1] - Worker 122 (PID: 726) booted in 0.07s, phase: 0 +[1] - Worker 112 (PID: 667) booted in 0.1s, phase: 0 +[1] - Worker 113 (PID: 673) booted in 0.1s, phase: 0 +[1] - Worker 114 (PID: 679) booted in 0.09s, phase: 0 +[1] - Worker 115 (PID: 685) booted in 0.09s, phase: 0 +[1] - Worker 116 (PID: 690) booted in 0.09s, phase: 0 +[1] - Worker 117 (PID: 697) booted in 0.09s, phase: 0 +[1] - Worker 118 (PID: 703) booted in 0.08s, phase: 0 +[1] - Worker 119 (PID: 709) booted in 0.08s, phase: 0 +[1] - Worker 120 (PID: 714) booted in 0.08s, phase: 0 +[1] - Worker 121 (PID: 722) booted in 0.08s, phase: 0 +[1] - Worker 122 (PID: 726) booted in 0.08s, phase: 0 [1] - Worker 123 (PID: 732) booted in 0.07s, phase: 0 [1] - Worker 124 (PID: 739) booted in 0.07s, phase: 0 [1] - Worker 125 (PID: 745) booted in 0.07s, phase: 0 -[1] - Worker 126 (PID: 752) booted in 0.06s, phase: 0 -[1] - Worker 127 (PID: 758) booted in 0.06s, phase: 0 +[1] - Worker 126 (PID: 750) booted in 0.07s, phase: 0 +[1] - Worker 127 (PID: 757) booted in 0.06s, phase: 0 diff --git a/site/static/logs/mixed/4096/sinatra.log b/site/static/logs/mixed/4096/sinatra.log index 789e836a..86e77493 100644 --- a/site/static/logs/mixed/4096/sinatra.log +++ b/site/static/logs/mixed/4096/sinatra.log @@ -13,131 +13,131 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 8) booted in 0.22s, phase: 0 -[1] - Worker 1 (PID: 12) booted in 0.22s, phase: 0 -[1] - Worker 2 (PID: 16) booted in 0.22s, phase: 0 -[1] - Worker 3 (PID: 20) booted in 0.22s, phase: 0 -[1] - Worker 4 (PID: 24) booted in 0.22s, phase: 0 -[1] - Worker 5 (PID: 28) booted in 0.22s, phase: 0 -[1] - Worker 6 (PID: 32) booted in 0.22s, phase: 0 -[1] - Worker 7 (PID: 37) booted in 0.21s, phase: 0 -[1] - Worker 8 (PID: 42) booted in 0.21s, phase: 0 -[1] - Worker 9 (PID: 47) booted in 0.21s, phase: 0 -[1] - Worker 10 (PID: 52) booted in 0.21s, phase: 0 -[1] - Worker 11 (PID: 57) booted in 0.21s, phase: 0 -[1] - Worker 12 (PID: 62) booted in 0.21s, phase: 0 -[1] - Worker 13 (PID: 68) booted in 0.2s, phase: 0 -[1] - Worker 14 (PID: 78) booted in 0.2s, phase: 0 -[1] - Worker 15 (PID: 83) booted in 0.2s, phase: 0 -[1] - Worker 16 (PID: 89) booted in 0.2s, phase: 0 -[1] - Worker 17 (PID: 94) booted in 0.2s, phase: 0 -[1] - Worker 18 (PID: 100) booted in 0.2s, phase: 0 -[1] - Worker 19 (PID: 106) booted in 0.2s, phase: 0 -[1] - Worker 20 (PID: 111) booted in 0.2s, phase: 0 -[1] - Worker 21 (PID: 116) booted in 0.2s, phase: 0 -[1] - Worker 22 (PID: 123) booted in 0.2s, phase: 0 -[1] - Worker 23 (PID: 129) booted in 0.19s, phase: 0 -[1] - Worker 24 (PID: 135) booted in 0.19s, phase: 0 -[1] - Worker 25 (PID: 141) booted in 0.19s, phase: 0 -[1] - Worker 26 (PID: 146) booted in 0.19s, phase: 0 -[1] - Worker 27 (PID: 151) booted in 0.19s, phase: 0 -[1] - Worker 28 (PID: 157) booted in 0.19s, phase: 0 -[1] - Worker 29 (PID: 166) booted in 0.18s, phase: 0 -[1] - Worker 30 (PID: 175) booted in 0.18s, phase: 0 -[1] - Worker 31 (PID: 180) booted in 0.18s, phase: 0 -[1] - Worker 32 (PID: 186) booted in 0.18s, phase: 0 -[1] - Worker 33 (PID: 191) booted in 0.18s, phase: 0 -[1] - Worker 34 (PID: 196) booted in 0.18s, phase: 0 -[1] - Worker 35 (PID: 202) booted in 0.18s, phase: 0 -[1] - Worker 36 (PID: 207) booted in 0.18s, phase: 0 -[1] - Worker 37 (PID: 212) booted in 0.18s, phase: 0 -[1] - Worker 38 (PID: 218) booted in 0.18s, phase: 0 -[1] - Worker 39 (PID: 224) booted in 0.18s, phase: 0 -[1] - Worker 40 (PID: 229) booted in 0.18s, phase: 0 -[1] - Worker 41 (PID: 235) booted in 0.18s, phase: 0 -[1] - Worker 42 (PID: 240) booted in 0.18s, phase: 0 -[1] - Worker 43 (PID: 245) booted in 0.18s, phase: 0 -[1] - Worker 44 (PID: 251) booted in 0.18s, phase: 0 -[1] - Worker 45 (PID: 257) booted in 0.17s, phase: 0 -[1] - Worker 46 (PID: 263) booted in 0.17s, phase: 0 -[1] - Worker 47 (PID: 269) booted in 0.17s, phase: 0 -[1] - Worker 48 (PID: 275) booted in 0.17s, phase: 0 -[1] - Worker 49 (PID: 281) booted in 0.17s, phase: 0 -[1] - Worker 50 (PID: 287) booted in 0.17s, phase: 0 -[1] - Worker 51 (PID: 293) booted in 0.17s, phase: 0 -[1] - Worker 52 (PID: 299) booted in 0.16s, phase: 0 -[1] - Worker 53 (PID: 305) booted in 0.16s, phase: 0 -[1] - Worker 54 (PID: 311) booted in 0.16s, phase: 0 -[1] - Worker 55 (PID: 317) booted in 0.16s, phase: 0 -[1] - Worker 56 (PID: 323) booted in 0.16s, phase: 0 -[1] - Worker 57 (PID: 329) booted in 0.16s, phase: 0 -[1] - Worker 58 (PID: 335) booted in 0.16s, phase: 0 -[1] - Worker 59 (PID: 341) booted in 0.15s, phase: 0 -[1] - Worker 60 (PID: 347) booted in 0.15s, phase: 0 -[1] - Worker 61 (PID: 353) booted in 0.15s, phase: 0 -[1] - Worker 62 (PID: 359) booted in 0.15s, phase: 0 -[1] - Worker 63 (PID: 365) booted in 0.15s, phase: 0 -[1] - Worker 64 (PID: 371) booted in 0.15s, phase: 0 -[1] - Worker 65 (PID: 377) booted in 0.15s, phase: 0 -[1] - Worker 66 (PID: 383) booted in 0.15s, phase: 0 -[1] - Worker 67 (PID: 389) booted in 0.14s, phase: 0 -[1] - Worker 68 (PID: 395) booted in 0.14s, phase: 0 -[1] - Worker 69 (PID: 401) booted in 0.14s, phase: 0 -[1] - Worker 70 (PID: 407) booted in 0.14s, phase: 0 -[1] - Worker 71 (PID: 413) booted in 0.14s, phase: 0 -[1] - Worker 72 (PID: 419) booted in 0.14s, phase: 0 +[1] - Worker 0 (PID: 8) booted in 0.24s, phase: 0 +[1] - Worker 1 (PID: 12) booted in 0.24s, phase: 0 +[1] - Worker 2 (PID: 16) booted in 0.23s, phase: 0 +[1] - Worker 3 (PID: 20) booted in 0.23s, phase: 0 +[1] - Worker 4 (PID: 24) booted in 0.23s, phase: 0 +[1] - Worker 5 (PID: 28) booted in 0.23s, phase: 0 +[1] - Worker 6 (PID: 32) booted in 0.23s, phase: 0 +[1] - Worker 7 (PID: 37) booted in 0.23s, phase: 0 +[1] - Worker 8 (PID: 42) booted in 0.23s, phase: 0 +[1] - Worker 9 (PID: 47) booted in 0.22s, phase: 0 +[1] - Worker 10 (PID: 52) booted in 0.22s, phase: 0 +[1] - Worker 11 (PID: 57) booted in 0.22s, phase: 0 +[1] - Worker 12 (PID: 62) booted in 0.22s, phase: 0 +[1] - Worker 13 (PID: 68) booted in 0.22s, phase: 0 +[1] - Worker 14 (PID: 78) booted in 0.21s, phase: 0 +[1] - Worker 15 (PID: 84) booted in 0.21s, phase: 0 +[1] - Worker 16 (PID: 90) booted in 0.22s, phase: 0 +[1] - Worker 17 (PID: 96) booted in 0.22s, phase: 0 +[1] - Worker 18 (PID: 102) booted in 0.22s, phase: 0 +[1] - Worker 19 (PID: 107) booted in 0.22s, phase: 0 +[1] - Worker 20 (PID: 112) booted in 0.22s, phase: 0 +[1] - Worker 21 (PID: 118) booted in 0.22s, phase: 0 +[1] - Worker 22 (PID: 123) booted in 0.22s, phase: 0 +[1] - Worker 23 (PID: 130) booted in 0.22s, phase: 0 +[1] - Worker 24 (PID: 136) booted in 0.22s, phase: 0 +[1] - Worker 25 (PID: 141) booted in 0.22s, phase: 0 +[1] - Worker 26 (PID: 146) booted in 0.22s, phase: 0 +[1] - Worker 27 (PID: 152) booted in 0.21s, phase: 0 +[1] - Worker 28 (PID: 158) booted in 0.21s, phase: 0 +[1] - Worker 29 (PID: 166) booted in 0.21s, phase: 0 +[1] - Worker 30 (PID: 176) booted in 0.21s, phase: 0 +[1] - Worker 31 (PID: 181) booted in 0.21s, phase: 0 +[1] - Worker 32 (PID: 187) booted in 0.21s, phase: 0 +[1] - Worker 33 (PID: 192) booted in 0.2s, phase: 0 +[1] - Worker 34 (PID: 197) booted in 0.2s, phase: 0 +[1] - Worker 35 (PID: 203) booted in 0.2s, phase: 0 +[1] - Worker 36 (PID: 208) booted in 0.2s, phase: 0 +[1] - Worker 37 (PID: 213) booted in 0.2s, phase: 0 +[1] - Worker 38 (PID: 219) booted in 0.2s, phase: 0 +[1] - Worker 39 (PID: 224) booted in 0.2s, phase: 0 +[1] - Worker 40 (PID: 229) booted in 0.19s, phase: 0 +[1] - Worker 41 (PID: 236) booted in 0.19s, phase: 0 +[1] - Worker 42 (PID: 240) booted in 0.19s, phase: 0 +[1] - Worker 43 (PID: 245) booted in 0.19s, phase: 0 +[1] - Worker 44 (PID: 251) booted in 0.19s, phase: 0 +[1] - Worker 45 (PID: 257) booted in 0.19s, phase: 0 +[1] - Worker 46 (PID: 263) booted in 0.19s, phase: 0 +[1] - Worker 47 (PID: 270) booted in 0.18s, phase: 0 +[1] - Worker 48 (PID: 276) booted in 0.18s, phase: 0 +[1] - Worker 49 (PID: 280) booted in 0.18s, phase: 0 +[1] - Worker 50 (PID: 287) booted in 0.18s, phase: 0 +[1] - Worker 51 (PID: 295) booted in 0.18s, phase: 0 +[1] - Worker 52 (PID: 301) booted in 0.18s, phase: 0 +[1] - Worker 53 (PID: 307) booted in 0.18s, phase: 0 +[1] - Worker 54 (PID: 313) booted in 0.17s, phase: 0 +[1] - Worker 55 (PID: 318) booted in 0.17s, phase: 0 +[1] - Worker 56 (PID: 325) booted in 0.17s, phase: 0 +[1] - Worker 57 (PID: 332) booted in 0.17s, phase: 0 +[1] - Worker 58 (PID: 337) booted in 0.17s, phase: 0 +[1] - Worker 59 (PID: 343) booted in 0.16s, phase: 0 +[1] - Worker 60 (PID: 349) booted in 0.16s, phase: 0 +[1] - Worker 61 (PID: 354) booted in 0.16s, phase: 0 +[1] - Worker 62 (PID: 361) booted in 0.16s, phase: 0 +[1] - Worker 63 (PID: 367) booted in 0.16s, phase: 0 +[1] - Worker 64 (PID: 372) booted in 0.16s, phase: 0 +[1] - Worker 65 (PID: 378) booted in 0.16s, phase: 0 +[1] - Worker 66 (PID: 384) booted in 0.15s, phase: 0 +[1] - Worker 67 (PID: 390) booted in 0.15s, phase: 0 +[1] - Worker 68 (PID: 396) booted in 0.15s, phase: 0 +[1] - Worker 69 (PID: 402) booted in 0.15s, phase: 0 +[1] - Worker 70 (PID: 407) booted in 0.15s, phase: 0 +[1] - Worker 71 (PID: 413) booted in 0.15s, phase: 0 +[1] - Worker 72 (PID: 419) booted in 0.15s, phase: 0 [1] - Worker 73 (PID: 425) booted in 0.14s, phase: 0 -[1] - Worker 74 (PID: 431) booted in 0.13s, phase: 0 -[1] - Worker 75 (PID: 437) booted in 0.13s, phase: 0 -[1] - Worker 76 (PID: 443) booted in 0.13s, phase: 0 -[1] - Worker 77 (PID: 449) booted in 0.13s, phase: 0 -[1] - Worker 78 (PID: 455) booted in 0.13s, phase: 0 -[1] - Worker 79 (PID: 461) booted in 0.13s, phase: 0 -[1] - Worker 80 (PID: 467) booted in 0.12s, phase: 0 -[1] - Worker 81 (PID: 473) booted in 0.12s, phase: 0 -[1] - Worker 82 (PID: 479) booted in 0.12s, phase: 0 -[1] - Worker 83 (PID: 485) booted in 0.12s, phase: 0 -[1] - Worker 84 (PID: 491) booted in 0.12s, phase: 0 -[1] - Worker 85 (PID: 497) booted in 0.12s, phase: 0 -[1] - Worker 86 (PID: 503) booted in 0.12s, phase: 0 -[1] - Worker 87 (PID: 509) booted in 0.11s, phase: 0 -[1] - Worker 88 (PID: 515) booted in 0.11s, phase: 0 -[1] - Worker 89 (PID: 521) booted in 0.11s, phase: 0 -[1] - Worker 90 (PID: 527) booted in 0.11s, phase: 0 -[1] - Worker 91 (PID: 533) booted in 0.11s, phase: 0 +[1] - Worker 74 (PID: 434) booted in 0.14s, phase: 0 +[1] - Worker 75 (PID: 439) booted in 0.14s, phase: 0 +[1] - Worker 76 (PID: 445) booted in 0.14s, phase: 0 +[1] - Worker 77 (PID: 451) booted in 0.14s, phase: 0 +[1] - Worker 78 (PID: 457) booted in 0.13s, phase: 0 +[1] - Worker 79 (PID: 463) booted in 0.13s, phase: 0 +[1] - Worker 80 (PID: 469) booted in 0.13s, phase: 0 +[1] - Worker 81 (PID: 475) booted in 0.13s, phase: 0 +[1] - Worker 82 (PID: 480) booted in 0.13s, phase: 0 +[1] - Worker 83 (PID: 486) booted in 0.13s, phase: 0 +[1] - Worker 84 (PID: 492) booted in 0.13s, phase: 0 +[1] - Worker 85 (PID: 498) booted in 0.12s, phase: 0 +[1] - Worker 86 (PID: 504) booted in 0.12s, phase: 0 +[1] - Worker 87 (PID: 509) booted in 0.12s, phase: 0 +[1] - Worker 88 (PID: 515) booted in 0.12s, phase: 0 +[1] - Worker 89 (PID: 521) booted in 0.12s, phase: 0 +[1] - Worker 90 (PID: 527) booted in 0.12s, phase: 0 +[1] - Worker 91 (PID: 533) booted in 0.12s, phase: 0 [1] - Worker 92 (PID: 539) booted in 0.11s, phase: 0 [1] - Worker 93 (PID: 545) booted in 0.11s, phase: 0 -[1] - Worker 94 (PID: 551) booted in 0.1s, phase: 0 -[1] - Worker 95 (PID: 557) booted in 0.1s, phase: 0 -[1] - Worker 96 (PID: 563) booted in 0.1s, phase: 0 -[1] - Worker 97 (PID: 569) booted in 0.1s, phase: 0 -[1] - Worker 98 (PID: 575) booted in 0.1s, phase: 0 +[1] - Worker 94 (PID: 551) booted in 0.11s, phase: 0 +[1] - Worker 95 (PID: 557) booted in 0.11s, phase: 0 +[1] - Worker 96 (PID: 563) booted in 0.11s, phase: 0 +[1] - Worker 97 (PID: 569) booted in 0.11s, phase: 0 +[1] - Worker 98 (PID: 575) booted in 0.11s, phase: 0 [1] - Worker 99 (PID: 581) booted in 0.1s, phase: 0 -[1] - Worker 100 (PID: 587) booted in 0.09s, phase: 0 -[1] - Worker 101 (PID: 593) booted in 0.09s, phase: 0 -[1] - Worker 102 (PID: 599) booted in 0.09s, phase: 0 -[1] - Worker 103 (PID: 605) booted in 0.09s, phase: 0 -[1] - Worker 104 (PID: 611) booted in 0.09s, phase: 0 +[1] - Worker 100 (PID: 587) booted in 0.1s, phase: 0 +[1] - Worker 101 (PID: 593) booted in 0.1s, phase: 0 +[1] - Worker 102 (PID: 599) booted in 0.1s, phase: 0 +[1] - Worker 103 (PID: 605) booted in 0.1s, phase: 0 +[1] - Worker 104 (PID: 611) booted in 0.1s, phase: 0 [1] - Worker 105 (PID: 617) booted in 0.09s, phase: 0 [1] - Worker 106 (PID: 623) booted in 0.09s, phase: 0 -[1] - Worker 107 (PID: 629) booted in 0.08s, phase: 0 -[1] - Worker 108 (PID: 635) booted in 0.08s, phase: 0 -[1] - Worker 109 (PID: 641) booted in 0.08s, phase: 0 -[1] - Worker 110 (PID: 647) booted in 0.08s, phase: 0 -[1] - Worker 111 (PID: 653) booted in 0.08s, phase: 0 +[1] - Worker 107 (PID: 629) booted in 0.09s, phase: 0 +[1] - Worker 108 (PID: 635) booted in 0.09s, phase: 0 +[1] - Worker 109 (PID: 641) booted in 0.09s, phase: 0 +[1] - Worker 110 (PID: 647) booted in 0.09s, phase: 0 +[1] - Worker 111 (PID: 653) booted in 0.09s, phase: 0 [1] - Worker 112 (PID: 659) booted in 0.08s, phase: 0 [1] - Worker 113 (PID: 665) booted in 0.08s, phase: 0 -[1] - Worker 114 (PID: 671) booted in 0.07s, phase: 0 -[1] - Worker 115 (PID: 677) booted in 0.07s, phase: 0 -[1] - Worker 116 (PID: 683) booted in 0.07s, phase: 0 -[1] - Worker 117 (PID: 689) booted in 0.07s, phase: 0 -[1] - Worker 118 (PID: 695) booted in 0.07s, phase: 0 -[1] - Worker 119 (PID: 701) booted in 0.07s, phase: 0 -[1] - Worker 120 (PID: 708) booted in 0.06s, phase: 0 -[1] - Worker 121 (PID: 713) booted in 0.06s, phase: 0 -[1] - Worker 122 (PID: 719) booted in 0.06s, phase: 0 -[1] - Worker 123 (PID: 726) booted in 0.06s, phase: 0 -[1] - Worker 124 (PID: 732) booted in 0.06s, phase: 0 -[1] - Worker 125 (PID: 737) booted in 0.06s, phase: 0 -[1] - Worker 126 (PID: 744) booted in 0.06s, phase: 0 -[1] - Worker 127 (PID: 750) booted in 0.05s, phase: 0 +[1] - Worker 114 (PID: 671) booted in 0.08s, phase: 0 +[1] - Worker 115 (PID: 678) booted in 0.08s, phase: 0 +[1] - Worker 116 (PID: 684) booted in 0.08s, phase: 0 +[1] - Worker 117 (PID: 691) booted in 0.08s, phase: 0 +[1] - Worker 118 (PID: 698) booted in 0.07s, phase: 0 +[1] - Worker 119 (PID: 705) booted in 0.07s, phase: 0 +[1] - Worker 120 (PID: 711) booted in 0.07s, phase: 0 +[1] - Worker 121 (PID: 718) booted in 0.07s, phase: 0 +[1] - Worker 122 (PID: 724) booted in 0.06s, phase: 0 +[1] - Worker 123 (PID: 730) booted in 0.06s, phase: 0 +[1] - Worker 124 (PID: 735) booted in 0.06s, phase: 0 +[1] - Worker 125 (PID: 741) booted in 0.06s, phase: 0 +[1] - Worker 126 (PID: 746) booted in 0.06s, phase: 0 +[1] - Worker 127 (PID: 753) booted in 0.06s, phase: 0 diff --git a/site/static/logs/mixed/4096/starlette.log b/site/static/logs/mixed/4096/starlette.log index 7b932095..35d9c1b4 100644 --- a/site/static/logs/mixed/4096/starlette.log +++ b/site/static/logs/mixed/4096/starlette.log @@ -1,1031 +1,1031 @@ -[2026-03-26 02:13:42 +0000] [1] [INFO] Starting gunicorn 23.0.0 -[2026-03-26 02:13:42 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) -[2026-03-26 02:13:42 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker -[2026-03-26 02:13:42 +0000] [7] [INFO] Booting worker with pid: 7 -[2026-03-26 02:13:42 +0000] [8] [INFO] Booting worker with pid: 8 -[2026-03-26 02:13:42 +0000] [9] [INFO] Booting worker with pid: 9 -[2026-03-26 02:13:42 +0000] [7] [INFO] Started server process [7] -[2026-03-26 02:13:42 +0000] [8] [INFO] Started server process [8] -[2026-03-26 02:13:42 +0000] [7] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [8] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [7] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [8] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [9] [INFO] Started server process [9] -[2026-03-26 02:13:42 +0000] [9] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [9] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [13] [INFO] Booting worker with pid: 13 -[2026-03-26 02:13:42 +0000] [13] [INFO] Started server process [13] -[2026-03-26 02:13:42 +0000] [13] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [13] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [15] [INFO] Booting worker with pid: 15 -[2026-03-26 02:13:42 +0000] [16] [INFO] Booting worker with pid: 16 -[2026-03-26 02:13:42 +0000] [15] [INFO] Started server process [15] -[2026-03-26 02:13:42 +0000] [15] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [15] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [16] [INFO] Started server process [16] -[2026-03-26 02:13:42 +0000] [16] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [16] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [19] [INFO] Booting worker with pid: 19 -[2026-03-26 02:13:42 +0000] [20] [INFO] Booting worker with pid: 20 -[2026-03-26 02:13:42 +0000] [19] [INFO] Started server process [19] -[2026-03-26 02:13:42 +0000] [19] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [19] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [23] [INFO] Booting worker with pid: 23 -[2026-03-26 02:13:42 +0000] [20] [INFO] Started server process [20] -[2026-03-26 02:13:42 +0000] [20] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [20] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [23] [INFO] Started server process [23] -[2026-03-26 02:13:42 +0000] [23] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [23] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [25] [INFO] Booting worker with pid: 25 -[2026-03-26 02:13:42 +0000] [27] [INFO] Booting worker with pid: 27 -[2026-03-26 02:13:42 +0000] [25] [INFO] Started server process [25] -[2026-03-26 02:13:42 +0000] [25] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [25] [INFO] Application startup complete. -[2026-03-26 02:13:42 +0000] [28] [INFO] Booting worker with pid: 28 -[2026-03-26 02:13:42 +0000] [27] [INFO] Started server process [27] -[2026-03-26 02:13:42 +0000] [27] [INFO] Waiting for application startup. -[2026-03-26 02:13:42 +0000] [27] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [28] [INFO] Started server process [28] -[2026-03-26 02:13:43 +0000] [28] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [28] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [31] [INFO] Booting worker with pid: 31 -[2026-03-26 02:13:43 +0000] [31] [INFO] Started server process [31] -[2026-03-26 02:13:43 +0000] [31] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [31] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [33] [INFO] Booting worker with pid: 33 -[2026-03-26 02:13:43 +0000] [33] [INFO] Started server process [33] -[2026-03-26 02:13:43 +0000] [33] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [33] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [35] [INFO] Booting worker with pid: 35 -[2026-03-26 02:13:43 +0000] [35] [INFO] Started server process [35] -[2026-03-26 02:13:43 +0000] [35] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [35] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [37] [INFO] Booting worker with pid: 37 -[2026-03-26 02:13:43 +0000] [38] [INFO] Booting worker with pid: 38 -[2026-03-26 02:13:43 +0000] [37] [INFO] Started server process [37] -[2026-03-26 02:13:43 +0000] [37] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [37] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [41] [INFO] Booting worker with pid: 41 -[2026-03-26 02:13:43 +0000] [38] [INFO] Started server process [38] -[2026-03-26 02:13:43 +0000] [38] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [38] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [42] [INFO] Booting worker with pid: 42 -[2026-03-26 02:13:43 +0000] [43] [INFO] Booting worker with pid: 43 -[2026-03-26 02:13:43 +0000] [41] [INFO] Started server process [41] -[2026-03-26 02:13:43 +0000] [41] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [41] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [42] [INFO] Started server process [42] -[2026-03-26 02:13:43 +0000] [42] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [42] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [46] [INFO] Booting worker with pid: 46 -[2026-03-26 02:13:43 +0000] [43] [INFO] Started server process [43] -[2026-03-26 02:13:43 +0000] [43] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [43] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [48] [INFO] Booting worker with pid: 48 -[2026-03-26 02:13:43 +0000] [46] [INFO] Started server process [46] -[2026-03-26 02:13:43 +0000] [46] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [46] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [51] [INFO] Booting worker with pid: 51 -[2026-03-26 02:13:43 +0000] [48] [INFO] Started server process [48] -[2026-03-26 02:13:43 +0000] [48] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [48] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [51] [INFO] Started server process [51] -[2026-03-26 02:13:43 +0000] [51] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [51] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [53] [INFO] Booting worker with pid: 53 -[2026-03-26 02:13:43 +0000] [54] [INFO] Booting worker with pid: 54 -[2026-03-26 02:13:43 +0000] [53] [INFO] Started server process [53] -[2026-03-26 02:13:43 +0000] [53] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [53] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [54] [INFO] Started server process [54] -[2026-03-26 02:13:43 +0000] [54] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [54] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [57] [INFO] Booting worker with pid: 57 -[2026-03-26 02:13:43 +0000] [58] [INFO] Booting worker with pid: 58 -[2026-03-26 02:13:43 +0000] [59] [INFO] Booting worker with pid: 59 -[2026-03-26 02:13:43 +0000] [57] [INFO] Started server process [57] -[2026-03-26 02:13:43 +0000] [57] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [57] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [58] [INFO] Started server process [58] -[2026-03-26 02:13:43 +0000] [58] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [58] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [59] [INFO] Started server process [59] -[2026-03-26 02:13:43 +0000] [59] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [59] [INFO] Application startup complete. -[2026-03-26 02:13:43 +0000] [63] [INFO] Booting worker with pid: 63 -[2026-03-26 02:13:43 +0000] [64] [INFO] Booting worker with pid: 64 -[2026-03-26 02:13:43 +0000] [65] [INFO] Booting worker with pid: 65 -[2026-03-26 02:13:43 +0000] [63] [INFO] Started server process [63] -[2026-03-26 02:13:43 +0000] [63] [INFO] Waiting for application startup. -[2026-03-26 02:13:43 +0000] [63] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [68] [INFO] Booting worker with pid: 68 -[2026-03-26 02:13:44 +0000] [64] [INFO] Started server process [64] -[2026-03-26 02:13:44 +0000] [64] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [64] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [65] [INFO] Started server process [65] -[2026-03-26 02:13:44 +0000] [65] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [65] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [71] [INFO] Booting worker with pid: 71 -[2026-03-26 02:13:44 +0000] [68] [INFO] Started server process [68] -[2026-03-26 02:13:44 +0000] [68] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [68] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [71] [INFO] Started server process [71] -[2026-03-26 02:13:44 +0000] [71] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [71] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [73] [INFO] Booting worker with pid: 73 -[2026-03-26 02:13:44 +0000] [73] [INFO] Started server process [73] -[2026-03-26 02:13:44 +0000] [73] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [73] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [75] [INFO] Booting worker with pid: 75 -[2026-03-26 02:13:44 +0000] [76] [INFO] Booting worker with pid: 76 -[2026-03-26 02:13:44 +0000] [75] [INFO] Started server process [75] -[2026-03-26 02:13:44 +0000] [75] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [75] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [79] [INFO] Booting worker with pid: 79 -[2026-03-26 02:13:44 +0000] [76] [INFO] Started server process [76] -[2026-03-26 02:13:44 +0000] [76] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [76] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [80] [INFO] Booting worker with pid: 80 -[2026-03-26 02:13:44 +0000] [79] [INFO] Started server process [79] -[2026-03-26 02:13:44 +0000] [79] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [79] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [80] [INFO] Started server process [80] -[2026-03-26 02:13:44 +0000] [80] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [80] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [83] [INFO] Booting worker with pid: 83 -[2026-03-26 02:13:44 +0000] [84] [INFO] Booting worker with pid: 84 -[2026-03-26 02:13:44 +0000] [85] [INFO] Booting worker with pid: 85 -[2026-03-26 02:13:44 +0000] [83] [INFO] Started server process [83] -[2026-03-26 02:13:44 +0000] [83] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [83] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [84] [INFO] Started server process [84] -[2026-03-26 02:13:44 +0000] [84] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [84] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [89] [INFO] Booting worker with pid: 89 -[2026-03-26 02:13:44 +0000] [90] [INFO] Booting worker with pid: 90 -[2026-03-26 02:13:44 +0000] [85] [INFO] Started server process [85] -[2026-03-26 02:13:44 +0000] [85] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [85] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [91] [INFO] Booting worker with pid: 91 -[2026-03-26 02:13:44 +0000] [92] [INFO] Booting worker with pid: 92 -[2026-03-26 02:13:44 +0000] [90] [INFO] Started server process [90] -[2026-03-26 02:13:44 +0000] [90] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [89] [INFO] Started server process [89] -[2026-03-26 02:13:44 +0000] [89] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [90] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [89] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [91] [INFO] Started server process [91] -[2026-03-26 02:13:44 +0000] [91] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [91] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [97] [INFO] Booting worker with pid: 97 -[2026-03-26 02:13:44 +0000] [92] [INFO] Started server process [92] -[2026-03-26 02:13:44 +0000] [92] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [92] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [98] [INFO] Booting worker with pid: 98 -[2026-03-26 02:13:44 +0000] [97] [INFO] Started server process [97] -[2026-03-26 02:13:44 +0000] [97] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [97] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [101] [INFO] Booting worker with pid: 101 -[2026-03-26 02:13:44 +0000] [98] [INFO] Started server process [98] -[2026-03-26 02:13:44 +0000] [98] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [98] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [102] [INFO] Booting worker with pid: 102 -[2026-03-26 02:13:44 +0000] [104] [INFO] Booting worker with pid: 104 -[2026-03-26 02:13:44 +0000] [101] [INFO] Started server process [101] -[2026-03-26 02:13:44 +0000] [101] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [101] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [106] [INFO] Booting worker with pid: 106 -[2026-03-26 02:13:44 +0000] [102] [INFO] Started server process [102] -[2026-03-26 02:13:44 +0000] [102] [INFO] Waiting for application startup. -[2026-03-26 02:13:44 +0000] [102] [INFO] Application startup complete. -[2026-03-26 02:13:44 +0000] [107] [INFO] Booting worker with pid: 107 -[2026-03-26 02:13:45 +0000] [104] [INFO] Started server process [104] -[2026-03-26 02:13:45 +0000] [104] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [104] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [106] [INFO] Started server process [106] -[2026-03-26 02:13:45 +0000] [106] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [106] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [107] [INFO] Started server process [107] -[2026-03-26 02:13:45 +0000] [107] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [107] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [111] [INFO] Booting worker with pid: 111 -[2026-03-26 02:13:45 +0000] [112] [INFO] Booting worker with pid: 112 -[2026-03-26 02:13:45 +0000] [111] [INFO] Started server process [111] -[2026-03-26 02:13:45 +0000] [111] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [111] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [114] [INFO] Booting worker with pid: 114 -[2026-03-26 02:13:45 +0000] [116] [INFO] Booting worker with pid: 116 -[2026-03-26 02:13:45 +0000] [112] [INFO] Started server process [112] -[2026-03-26 02:13:45 +0000] [112] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [112] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [114] [INFO] Started server process [114] -[2026-03-26 02:13:45 +0000] [114] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [114] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [118] [INFO] Booting worker with pid: 118 -[2026-03-26 02:13:45 +0000] [116] [INFO] Started server process [116] -[2026-03-26 02:13:45 +0000] [116] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [116] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [118] [INFO] Started server process [118] -[2026-03-26 02:13:45 +0000] [118] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [118] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [121] [INFO] Booting worker with pid: 121 -[2026-03-26 02:13:45 +0000] [122] [INFO] Booting worker with pid: 122 -[2026-03-26 02:13:45 +0000] [123] [INFO] Booting worker with pid: 123 -[2026-03-26 02:13:45 +0000] [121] [INFO] Started server process [121] -[2026-03-26 02:13:45 +0000] [121] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [121] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [125] [INFO] Booting worker with pid: 125 -[2026-03-26 02:13:45 +0000] [122] [INFO] Started server process [122] -[2026-03-26 02:13:45 +0000] [122] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [122] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [123] [INFO] Started server process [123] -[2026-03-26 02:13:45 +0000] [123] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [123] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [128] [INFO] Booting worker with pid: 128 -[2026-03-26 02:13:45 +0000] [130] [INFO] Booting worker with pid: 130 -[2026-03-26 02:13:45 +0000] [125] [INFO] Started server process [125] -[2026-03-26 02:13:45 +0000] [125] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [125] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [131] [INFO] Booting worker with pid: 131 -[2026-03-26 02:13:45 +0000] [128] [INFO] Started server process [128] -[2026-03-26 02:13:45 +0000] [128] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [128] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [130] [INFO] Started server process [130] -[2026-03-26 02:13:45 +0000] [130] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [130] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [135] [INFO] Booting worker with pid: 135 -[2026-03-26 02:13:45 +0000] [131] [INFO] Started server process [131] -[2026-03-26 02:13:45 +0000] [131] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [131] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [137] [INFO] Booting worker with pid: 137 -[2026-03-26 02:13:45 +0000] [135] [INFO] Started server process [135] -[2026-03-26 02:13:45 +0000] [135] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [135] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [138] [INFO] Booting worker with pid: 138 -[2026-03-26 02:13:45 +0000] [139] [INFO] Booting worker with pid: 139 -[2026-03-26 02:13:45 +0000] [137] [INFO] Started server process [137] -[2026-03-26 02:13:45 +0000] [137] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [137] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [141] [INFO] Booting worker with pid: 141 -[2026-03-26 02:13:45 +0000] [138] [INFO] Started server process [138] -[2026-03-26 02:13:45 +0000] [138] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [138] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [139] [INFO] Started server process [139] -[2026-03-26 02:13:45 +0000] [139] [INFO] Waiting for application startup. -[2026-03-26 02:13:45 +0000] [139] [INFO] Application startup complete. -[2026-03-26 02:13:45 +0000] [144] [INFO] Booting worker with pid: 144 -[2026-03-26 02:13:46 +0000] [141] [INFO] Started server process [141] -[2026-03-26 02:13:46 +0000] [141] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [141] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [146] [INFO] Booting worker with pid: 146 -[2026-03-26 02:13:46 +0000] [144] [INFO] Started server process [144] -[2026-03-26 02:13:46 +0000] [144] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [144] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [148] [INFO] Booting worker with pid: 148 -[2026-03-26 02:13:46 +0000] [149] [INFO] Booting worker with pid: 149 -[2026-03-26 02:13:46 +0000] [151] [INFO] Booting worker with pid: 151 -[2026-03-26 02:13:46 +0000] [146] [INFO] Started server process [146] -[2026-03-26 02:13:46 +0000] [146] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [146] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [152] [INFO] Booting worker with pid: 152 -[2026-03-26 02:13:46 +0000] [148] [INFO] Started server process [148] -[2026-03-26 02:13:46 +0000] [148] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [148] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [155] [INFO] Booting worker with pid: 155 -[2026-03-26 02:13:46 +0000] [149] [INFO] Started server process [149] -[2026-03-26 02:13:46 +0000] [149] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [149] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [151] [INFO] Started server process [151] -[2026-03-26 02:13:46 +0000] [151] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [151] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [152] [INFO] Started server process [152] -[2026-03-26 02:13:46 +0000] [152] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [152] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [158] [INFO] Booting worker with pid: 158 -[2026-03-26 02:13:46 +0000] [160] [INFO] Booting worker with pid: 160 -[2026-03-26 02:13:46 +0000] [155] [INFO] Started server process [155] -[2026-03-26 02:13:46 +0000] [155] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [155] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [158] [INFO] Started server process [158] -[2026-03-26 02:13:46 +0000] [158] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [158] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [162] [INFO] Booting worker with pid: 162 -[2026-03-26 02:13:46 +0000] [160] [INFO] Started server process [160] -[2026-03-26 02:13:46 +0000] [160] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [160] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [164] [INFO] Booting worker with pid: 164 -[2026-03-26 02:13:46 +0000] [162] [INFO] Started server process [162] -[2026-03-26 02:13:46 +0000] [162] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [162] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [167] [INFO] Booting worker with pid: 167 -[2026-03-26 02:13:46 +0000] [164] [INFO] Started server process [164] -[2026-03-26 02:13:46 +0000] [164] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [164] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [168] [INFO] Booting worker with pid: 168 -[2026-03-26 02:13:46 +0000] [167] [INFO] Started server process [167] -[2026-03-26 02:13:46 +0000] [167] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [167] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [170] [INFO] Booting worker with pid: 170 -[2026-03-26 02:13:46 +0000] [168] [INFO] Started server process [168] -[2026-03-26 02:13:46 +0000] [168] [INFO] Waiting for application startup. -[2026-03-26 02:13:46 +0000] [168] [INFO] Application startup complete. -[2026-03-26 02:13:46 +0000] [172] [INFO] Booting worker with pid: 172 -[2026-03-26 02:13:47 +0000] [174] [INFO] Booting worker with pid: 174 -[2026-03-26 02:13:47 +0000] [170] [INFO] Started server process [170] -[2026-03-26 02:13:47 +0000] [170] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [170] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [172] [INFO] Started server process [172] -[2026-03-26 02:13:47 +0000] [172] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [172] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [176] [INFO] Booting worker with pid: 176 -[2026-03-26 02:13:47 +0000] [174] [INFO] Started server process [174] -[2026-03-26 02:13:47 +0000] [174] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [174] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [178] [INFO] Booting worker with pid: 178 -[2026-03-26 02:13:47 +0000] [176] [INFO] Started server process [176] -[2026-03-26 02:13:47 +0000] [176] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [176] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [180] [INFO] Booting worker with pid: 180 -[2026-03-26 02:13:47 +0000] [178] [INFO] Started server process [178] -[2026-03-26 02:13:47 +0000] [178] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [178] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [182] [INFO] Booting worker with pid: 182 -[2026-03-26 02:13:47 +0000] [183] [INFO] Booting worker with pid: 183 -[2026-03-26 02:13:47 +0000] [180] [INFO] Started server process [180] -[2026-03-26 02:13:47 +0000] [180] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [180] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [185] [INFO] Booting worker with pid: 185 -[2026-03-26 02:13:47 +0000] [187] [INFO] Booting worker with pid: 187 -[2026-03-26 02:13:47 +0000] [182] [INFO] Started server process [182] -[2026-03-26 02:13:47 +0000] [182] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [182] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [189] [INFO] Booting worker with pid: 189 -[2026-03-26 02:13:47 +0000] [183] [INFO] Started server process [183] -[2026-03-26 02:13:47 +0000] [183] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [183] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [190] [INFO] Booting worker with pid: 190 -[2026-03-26 02:13:47 +0000] [185] [INFO] Started server process [185] -[2026-03-26 02:13:47 +0000] [185] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [185] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [193] [INFO] Booting worker with pid: 193 -[2026-03-26 02:13:47 +0000] [187] [INFO] Started server process [187] -[2026-03-26 02:13:47 +0000] [187] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [187] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [195] [INFO] Booting worker with pid: 195 -[2026-03-26 02:13:47 +0000] [189] [INFO] Started server process [189] -[2026-03-26 02:13:47 +0000] [189] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [189] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [196] [INFO] Booting worker with pid: 196 -[2026-03-26 02:13:47 +0000] [190] [INFO] Started server process [190] -[2026-03-26 02:13:47 +0000] [190] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [190] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [193] [INFO] Started server process [193] -[2026-03-26 02:13:47 +0000] [193] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [193] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [200] [INFO] Booting worker with pid: 200 -[2026-03-26 02:13:47 +0000] [195] [INFO] Started server process [195] -[2026-03-26 02:13:47 +0000] [195] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [195] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [196] [INFO] Started server process [196] -[2026-03-26 02:13:47 +0000] [196] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [196] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [202] [INFO] Booting worker with pid: 202 -[2026-03-26 02:13:47 +0000] [200] [INFO] Started server process [200] -[2026-03-26 02:13:47 +0000] [200] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [200] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [204] [INFO] Booting worker with pid: 204 -[2026-03-26 02:13:47 +0000] [205] [INFO] Booting worker with pid: 205 -[2026-03-26 02:13:47 +0000] [202] [INFO] Started server process [202] -[2026-03-26 02:13:47 +0000] [202] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [202] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [204] [INFO] Started server process [204] -[2026-03-26 02:13:47 +0000] [204] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [204] [INFO] Application startup complete. -[2026-03-26 02:13:47 +0000] [208] [INFO] Booting worker with pid: 208 -[2026-03-26 02:13:47 +0000] [205] [INFO] Started server process [205] -[2026-03-26 02:13:47 +0000] [205] [INFO] Waiting for application startup. -[2026-03-26 02:13:47 +0000] [205] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [210] [INFO] Booting worker with pid: 210 -[2026-03-26 02:13:48 +0000] [208] [INFO] Started server process [208] -[2026-03-26 02:13:48 +0000] [208] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [208] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [212] [INFO] Booting worker with pid: 212 -[2026-03-26 02:13:48 +0000] [210] [INFO] Started server process [210] -[2026-03-26 02:13:48 +0000] [210] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [210] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [214] [INFO] Booting worker with pid: 214 -[2026-03-26 02:13:48 +0000] [212] [INFO] Started server process [212] -[2026-03-26 02:13:48 +0000] [212] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [212] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [216] [INFO] Booting worker with pid: 216 -[2026-03-26 02:13:48 +0000] [214] [INFO] Started server process [214] -[2026-03-26 02:13:48 +0000] [214] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [214] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [218] [INFO] Booting worker with pid: 218 -[2026-03-26 02:13:48 +0000] [216] [INFO] Started server process [216] -[2026-03-26 02:13:48 +0000] [216] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [216] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [220] [INFO] Booting worker with pid: 220 -[2026-03-26 02:13:48 +0000] [221] [INFO] Booting worker with pid: 221 -[2026-03-26 02:13:48 +0000] [223] [INFO] Booting worker with pid: 223 -[2026-03-26 02:13:48 +0000] [218] [INFO] Started server process [218] -[2026-03-26 02:13:48 +0000] [218] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [218] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [224] [INFO] Booting worker with pid: 224 -[2026-03-26 02:13:48 +0000] [220] [INFO] Started server process [220] -[2026-03-26 02:13:48 +0000] [220] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [220] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [221] [INFO] Started server process [221] -[2026-03-26 02:13:48 +0000] [221] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [221] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [227] [INFO] Booting worker with pid: 227 -[2026-03-26 02:13:48 +0000] [228] [INFO] Booting worker with pid: 228 -[2026-03-26 02:13:48 +0000] [223] [INFO] Started server process [223] -[2026-03-26 02:13:48 +0000] [223] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [223] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [224] [INFO] Started server process [224] -[2026-03-26 02:13:48 +0000] [224] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [224] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [231] [INFO] Booting worker with pid: 231 -[2026-03-26 02:13:48 +0000] [227] [INFO] Started server process [227] -[2026-03-26 02:13:48 +0000] [227] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [227] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [228] [INFO] Started server process [228] -[2026-03-26 02:13:48 +0000] [228] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [228] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [234] [INFO] Booting worker with pid: 234 -[2026-03-26 02:13:48 +0000] [231] [INFO] Started server process [231] -[2026-03-26 02:13:48 +0000] [231] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [231] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [236] [INFO] Booting worker with pid: 236 -[2026-03-26 02:13:48 +0000] [238] [INFO] Booting worker with pid: 238 -[2026-03-26 02:13:48 +0000] [234] [INFO] Started server process [234] -[2026-03-26 02:13:48 +0000] [234] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [234] [INFO] Application startup complete. -[2026-03-26 02:13:48 +0000] [239] [INFO] Booting worker with pid: 239 -[2026-03-26 02:13:48 +0000] [236] [INFO] Started server process [236] -[2026-03-26 02:13:48 +0000] [236] [INFO] Waiting for application startup. -[2026-03-26 02:13:48 +0000] [236] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [238] [INFO] Started server process [238] -[2026-03-26 02:13:49 +0000] [238] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [238] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [242] [INFO] Booting worker with pid: 242 -[2026-03-26 02:13:49 +0000] [239] [INFO] Started server process [239] -[2026-03-26 02:13:49 +0000] [239] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [239] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [244] [INFO] Booting worker with pid: 244 -[2026-03-26 02:13:49 +0000] [245] [INFO] Booting worker with pid: 245 -[2026-03-26 02:13:49 +0000] [242] [INFO] Started server process [242] -[2026-03-26 02:13:49 +0000] [242] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [242] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [248] [INFO] Booting worker with pid: 248 -[2026-03-26 02:13:49 +0000] [244] [INFO] Started server process [244] -[2026-03-26 02:13:49 +0000] [244] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [244] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [250] [INFO] Booting worker with pid: 250 -[2026-03-26 02:13:49 +0000] [245] [INFO] Started server process [245] -[2026-03-26 02:13:49 +0000] [245] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [245] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [252] [INFO] Booting worker with pid: 252 -[2026-03-26 02:13:49 +0000] [253] [INFO] Booting worker with pid: 253 -[2026-03-26 02:13:49 +0000] [248] [INFO] Started server process [248] -[2026-03-26 02:13:49 +0000] [248] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [248] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [254] [INFO] Booting worker with pid: 254 -[2026-03-26 02:13:49 +0000] [250] [INFO] Started server process [250] -[2026-03-26 02:13:49 +0000] [250] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [250] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [256] [INFO] Booting worker with pid: 256 -[2026-03-26 02:13:49 +0000] [252] [INFO] Started server process [252] -[2026-03-26 02:13:49 +0000] [252] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [252] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [258] [INFO] Booting worker with pid: 258 -[2026-03-26 02:13:49 +0000] [254] [INFO] Started server process [254] -[2026-03-26 02:13:49 +0000] [254] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [254] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [261] [INFO] Booting worker with pid: 261 -[2026-03-26 02:13:49 +0000] [253] [INFO] Started server process [253] -[2026-03-26 02:13:49 +0000] [253] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [253] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [256] [INFO] Started server process [256] -[2026-03-26 02:13:49 +0000] [256] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [256] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [263] [INFO] Booting worker with pid: 263 -[2026-03-26 02:13:49 +0000] [265] [INFO] Booting worker with pid: 265 -[2026-03-26 02:13:49 +0000] [261] [INFO] Started server process [261] -[2026-03-26 02:13:49 +0000] [261] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [261] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [258] [INFO] Started server process [258] -[2026-03-26 02:13:49 +0000] [258] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [258] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [268] [INFO] Booting worker with pid: 268 -[2026-03-26 02:13:49 +0000] [263] [INFO] Started server process [263] -[2026-03-26 02:13:49 +0000] [263] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [263] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [269] [INFO] Booting worker with pid: 269 -[2026-03-26 02:13:49 +0000] [270] [INFO] Booting worker with pid: 270 -[2026-03-26 02:13:49 +0000] [265] [INFO] Started server process [265] -[2026-03-26 02:13:49 +0000] [265] [INFO] Waiting for application startup. -[2026-03-26 02:13:49 +0000] [265] [INFO] Application startup complete. -[2026-03-26 02:13:49 +0000] [272] [INFO] Booting worker with pid: 272 -[2026-03-26 02:13:50 +0000] [273] [INFO] Booting worker with pid: 273 -[2026-03-26 02:13:50 +0000] [276] [INFO] Booting worker with pid: 276 -[2026-03-26 02:13:50 +0000] [270] [INFO] Started server process [270] -[2026-03-26 02:13:50 +0000] [270] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [270] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [268] [INFO] Started server process [268] -[2026-03-26 02:13:50 +0000] [268] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [268] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [278] [INFO] Booting worker with pid: 278 -[2026-03-26 02:13:50 +0000] [269] [INFO] Started server process [269] -[2026-03-26 02:13:50 +0000] [269] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [269] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [279] [INFO] Booting worker with pid: 279 -[2026-03-26 02:13:50 +0000] [280] [INFO] Booting worker with pid: 280 -[2026-03-26 02:13:50 +0000] [283] [INFO] Booting worker with pid: 283 -[2026-03-26 02:13:50 +0000] [273] [INFO] Started server process [273] -[2026-03-26 02:13:50 +0000] [273] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [273] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [272] [INFO] Started server process [272] -[2026-03-26 02:13:50 +0000] [272] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [272] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [278] [INFO] Started server process [278] -[2026-03-26 02:13:50 +0000] [278] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [278] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [286] [INFO] Booting worker with pid: 286 -[2026-03-26 02:13:50 +0000] [276] [INFO] Started server process [276] -[2026-03-26 02:13:50 +0000] [276] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [276] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [280] [INFO] Started server process [280] -[2026-03-26 02:13:50 +0000] [280] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [280] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [288] [INFO] Booting worker with pid: 288 -[2026-03-26 02:13:50 +0000] [279] [INFO] Started server process [279] -[2026-03-26 02:13:50 +0000] [279] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [279] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [290] [INFO] Booting worker with pid: 290 -[2026-03-26 02:13:50 +0000] [291] [INFO] Booting worker with pid: 291 -[2026-03-26 02:13:50 +0000] [283] [INFO] Started server process [283] -[2026-03-26 02:13:50 +0000] [283] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [283] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [286] [INFO] Started server process [286] -[2026-03-26 02:13:50 +0000] [286] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [286] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [288] [INFO] Started server process [288] -[2026-03-26 02:13:50 +0000] [288] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [288] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [295] [INFO] Booting worker with pid: 295 -[2026-03-26 02:13:50 +0000] [296] [INFO] Booting worker with pid: 296 -[2026-03-26 02:13:50 +0000] [297] [INFO] Booting worker with pid: 297 -[2026-03-26 02:13:50 +0000] [291] [INFO] Started server process [291] -[2026-03-26 02:13:50 +0000] [291] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [291] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [300] [INFO] Booting worker with pid: 300 -[2026-03-26 02:13:50 +0000] [290] [INFO] Started server process [290] -[2026-03-26 02:13:50 +0000] [290] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [290] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [301] [INFO] Booting worker with pid: 301 -[2026-03-26 02:13:50 +0000] [295] [INFO] Started server process [295] -[2026-03-26 02:13:50 +0000] [295] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [295] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [296] [INFO] Started server process [296] -[2026-03-26 02:13:50 +0000] [296] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [296] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [297] [INFO] Started server process [297] -[2026-03-26 02:13:50 +0000] [297] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [297] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [305] [INFO] Booting worker with pid: 305 -[2026-03-26 02:13:50 +0000] [307] [INFO] Booting worker with pid: 307 -[2026-03-26 02:13:50 +0000] [300] [INFO] Started server process [300] -[2026-03-26 02:13:50 +0000] [300] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [300] [INFO] Application startup complete. -[2026-03-26 02:13:50 +0000] [309] [INFO] Booting worker with pid: 309 -[2026-03-26 02:13:50 +0000] [301] [INFO] Started server process [301] -[2026-03-26 02:13:50 +0000] [301] [INFO] Waiting for application startup. -[2026-03-26 02:13:50 +0000] [301] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [305] [INFO] Started server process [305] -[2026-03-26 02:13:51 +0000] [305] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [305] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [311] [INFO] Booting worker with pid: 311 -[2026-03-26 02:13:51 +0000] [312] [INFO] Booting worker with pid: 312 -[2026-03-26 02:13:51 +0000] [313] [INFO] Booting worker with pid: 313 -[2026-03-26 02:13:51 +0000] [315] [INFO] Booting worker with pid: 315 -[2026-03-26 02:13:51 +0000] [317] [INFO] Booting worker with pid: 317 -[2026-03-26 02:13:51 +0000] [307] [INFO] Started server process [307] -[2026-03-26 02:13:51 +0000] [307] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [307] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [309] [INFO] Started server process [309] -[2026-03-26 02:13:51 +0000] [309] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [309] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [319] [INFO] Booting worker with pid: 319 -[2026-03-26 02:13:51 +0000] [311] [INFO] Started server process [311] -[2026-03-26 02:13:51 +0000] [311] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [311] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [320] [INFO] Booting worker with pid: 320 -[2026-03-26 02:13:51 +0000] [323] [INFO] Booting worker with pid: 323 -[2026-03-26 02:13:51 +0000] [312] [INFO] Started server process [312] -[2026-03-26 02:13:51 +0000] [312] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [312] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [313] [INFO] Started server process [313] -[2026-03-26 02:13:51 +0000] [313] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [313] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [326] [INFO] Booting worker with pid: 326 -[2026-03-26 02:13:51 +0000] [315] [INFO] Started server process [315] -[2026-03-26 02:13:51 +0000] [315] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [315] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [327] [INFO] Booting worker with pid: 327 -[2026-03-26 02:13:51 +0000] [317] [INFO] Started server process [317] -[2026-03-26 02:13:51 +0000] [317] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [317] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [319] [INFO] Started server process [319] -[2026-03-26 02:13:51 +0000] [319] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [319] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [320] [INFO] Started server process [320] -[2026-03-26 02:13:51 +0000] [320] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [320] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [331] [INFO] Booting worker with pid: 331 -[2026-03-26 02:13:51 +0000] [323] [INFO] Started server process [323] -[2026-03-26 02:13:51 +0000] [323] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [323] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [332] [INFO] Booting worker with pid: 332 -[2026-03-26 02:13:51 +0000] [333] [INFO] Booting worker with pid: 333 -[2026-03-26 02:13:51 +0000] [326] [INFO] Started server process [326] -[2026-03-26 02:13:51 +0000] [326] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [326] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [336] [INFO] Booting worker with pid: 336 -[2026-03-26 02:13:51 +0000] [327] [INFO] Started server process [327] -[2026-03-26 02:13:51 +0000] [327] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [327] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [337] [INFO] Booting worker with pid: 337 -[2026-03-26 02:13:51 +0000] [338] [INFO] Booting worker with pid: 338 -[2026-03-26 02:13:51 +0000] [340] [INFO] Booting worker with pid: 340 -[2026-03-26 02:13:51 +0000] [342] [INFO] Booting worker with pid: 342 -[2026-03-26 02:13:51 +0000] [331] [INFO] Started server process [331] -[2026-03-26 02:13:51 +0000] [331] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [331] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [343] [INFO] Booting worker with pid: 343 -[2026-03-26 02:13:51 +0000] [332] [INFO] Started server process [332] -[2026-03-26 02:13:51 +0000] [332] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [332] [INFO] Application startup complete. -[2026-03-26 02:13:51 +0000] [333] [INFO] Started server process [333] -[2026-03-26 02:13:51 +0000] [333] [INFO] Waiting for application startup. -[2026-03-26 02:13:51 +0000] [333] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [345] [INFO] Booting worker with pid: 345 -[2026-03-26 02:13:52 +0000] [347] [INFO] Booting worker with pid: 347 -[2026-03-26 02:13:52 +0000] [348] [INFO] Booting worker with pid: 348 -[2026-03-26 02:13:52 +0000] [342] [INFO] Started server process [342] -[2026-03-26 02:13:52 +0000] [342] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [342] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [336] [INFO] Started server process [336] -[2026-03-26 02:13:52 +0000] [336] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [336] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [351] [INFO] Booting worker with pid: 351 -[2026-03-26 02:13:52 +0000] [337] [INFO] Started server process [337] -[2026-03-26 02:13:52 +0000] [337] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [337] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [353] [INFO] Booting worker with pid: 353 -[2026-03-26 02:13:52 +0000] [355] [INFO] Booting worker with pid: 355 -[2026-03-26 02:13:52 +0000] [343] [INFO] Started server process [343] -[2026-03-26 02:13:52 +0000] [343] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [343] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [338] [INFO] Started server process [338] -[2026-03-26 02:13:52 +0000] [338] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [338] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [347] [INFO] Started server process [347] -[2026-03-26 02:13:52 +0000] [347] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [347] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [358] [INFO] Booting worker with pid: 358 -[2026-03-26 02:13:52 +0000] [340] [INFO] Started server process [340] -[2026-03-26 02:13:52 +0000] [340] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [340] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [360] [INFO] Booting worker with pid: 360 -[2026-03-26 02:13:52 +0000] [345] [INFO] Started server process [345] -[2026-03-26 02:13:52 +0000] [345] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [361] [INFO] Booting worker with pid: 361 -[2026-03-26 02:13:52 +0000] [345] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [363] [INFO] Booting worker with pid: 363 -[2026-03-26 02:13:52 +0000] [365] [INFO] Booting worker with pid: 365 -[2026-03-26 02:13:52 +0000] [351] [INFO] Started server process [351] -[2026-03-26 02:13:52 +0000] [351] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [351] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [353] [INFO] Started server process [353] -[2026-03-26 02:13:52 +0000] [353] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [353] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [348] [INFO] Started server process [348] -[2026-03-26 02:13:52 +0000] [348] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [348] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [370] [INFO] Booting worker with pid: 370 -[2026-03-26 02:13:52 +0000] [358] [INFO] Started server process [358] -[2026-03-26 02:13:52 +0000] [358] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [358] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [361] [INFO] Started server process [361] -[2026-03-26 02:13:52 +0000] [361] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [361] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [371] [INFO] Booting worker with pid: 371 -[2026-03-26 02:13:52 +0000] [372] [INFO] Booting worker with pid: 372 -[2026-03-26 02:13:52 +0000] [355] [INFO] Started server process [355] -[2026-03-26 02:13:52 +0000] [355] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [355] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [375] [INFO] Booting worker with pid: 375 -[2026-03-26 02:13:52 +0000] [376] [INFO] Booting worker with pid: 376 -[2026-03-26 02:13:52 +0000] [370] [INFO] Started server process [370] -[2026-03-26 02:13:52 +0000] [370] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [370] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [360] [INFO] Started server process [360] -[2026-03-26 02:13:52 +0000] [360] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [360] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [377] [INFO] Booting worker with pid: 377 -[2026-03-26 02:13:52 +0000] [379] [INFO] Booting worker with pid: 379 -[2026-03-26 02:13:52 +0000] [382] [INFO] Booting worker with pid: 382 -[2026-03-26 02:13:52 +0000] [371] [INFO] Started server process [371] -[2026-03-26 02:13:52 +0000] [371] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [371] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [363] [INFO] Started server process [363] -[2026-03-26 02:13:52 +0000] [363] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [363] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [376] [INFO] Started server process [376] -[2026-03-26 02:13:52 +0000] [376] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [376] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [372] [INFO] Started server process [372] -[2026-03-26 02:13:52 +0000] [372] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [372] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [385] [INFO] Booting worker with pid: 385 -[2026-03-26 02:13:52 +0000] [365] [INFO] Started server process [365] -[2026-03-26 02:13:52 +0000] [365] [INFO] Waiting for application startup. -[2026-03-26 02:13:52 +0000] [365] [INFO] Application startup complete. -[2026-03-26 02:13:52 +0000] [387] [INFO] Booting worker with pid: 387 -[2026-03-26 02:13:53 +0000] [389] [INFO] Booting worker with pid: 389 -[2026-03-26 02:13:53 +0000] [382] [INFO] Started server process [382] -[2026-03-26 02:13:53 +0000] [382] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [382] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [375] [INFO] Started server process [375] -[2026-03-26 02:13:53 +0000] [375] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [375] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [391] [INFO] Booting worker with pid: 391 -[2026-03-26 02:13:53 +0000] [392] [INFO] Booting worker with pid: 392 -[2026-03-26 02:13:53 +0000] [379] [INFO] Started server process [379] -[2026-03-26 02:13:53 +0000] [394] [INFO] Booting worker with pid: 394 -[2026-03-26 02:13:53 +0000] [379] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [379] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [385] [INFO] Started server process [385] -[2026-03-26 02:13:53 +0000] [385] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [385] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [396] [INFO] Booting worker with pid: 396 -[2026-03-26 02:13:53 +0000] [377] [INFO] Started server process [377] -[2026-03-26 02:13:53 +0000] [377] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [377] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [389] [INFO] Started server process [389] -[2026-03-26 02:13:53 +0000] [389] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [389] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [398] [INFO] Booting worker with pid: 398 -[2026-03-26 02:13:53 +0000] [399] [INFO] Booting worker with pid: 399 -[2026-03-26 02:13:53 +0000] [396] [INFO] Started server process [396] -[2026-03-26 02:13:53 +0000] [396] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [396] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [402] [INFO] Booting worker with pid: 402 -[2026-03-26 02:13:53 +0000] [392] [INFO] Started server process [392] -[2026-03-26 02:13:53 +0000] [392] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [392] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [398] [INFO] Started server process [398] -[2026-03-26 02:13:53 +0000] [398] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [398] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [387] [INFO] Started server process [387] -[2026-03-26 02:13:53 +0000] [387] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [387] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [394] [INFO] Started server process [394] -[2026-03-26 02:13:53 +0000] [394] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [394] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [408] [INFO] Booting worker with pid: 408 -[2026-03-26 02:13:53 +0000] [399] [INFO] Started server process [399] -[2026-03-26 02:13:53 +0000] [399] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [399] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [409] [INFO] Booting worker with pid: 409 -[2026-03-26 02:13:53 +0000] [391] [INFO] Started server process [391] -[2026-03-26 02:13:53 +0000] [391] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [391] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [410] [INFO] Booting worker with pid: 410 -[2026-03-26 02:13:53 +0000] [412] [INFO] Booting worker with pid: 412 -[2026-03-26 02:13:53 +0000] [402] [INFO] Started server process [402] -[2026-03-26 02:13:53 +0000] [402] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [402] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [413] [INFO] Booting worker with pid: 413 -[2026-03-26 02:13:53 +0000] [408] [INFO] Started server process [408] -[2026-03-26 02:13:53 +0000] [408] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [408] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [415] [INFO] Booting worker with pid: 415 -[2026-03-26 02:13:53 +0000] [412] [INFO] Started server process [412] -[2026-03-26 02:13:53 +0000] [412] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [412] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [413] [INFO] Started server process [413] -[2026-03-26 02:13:53 +0000] [413] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [413] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [420] [INFO] Booting worker with pid: 420 -[2026-03-26 02:13:53 +0000] [409] [INFO] Started server process [409] -[2026-03-26 02:13:53 +0000] [409] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [409] [INFO] Application startup complete. -[2026-03-26 02:13:53 +0000] [410] [INFO] Started server process [410] -[2026-03-26 02:13:53 +0000] [410] [INFO] Waiting for application startup. -[2026-03-26 02:13:53 +0000] [410] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [415] [INFO] Started server process [415] -[2026-03-26 02:13:54 +0000] [415] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [415] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [422] [INFO] Booting worker with pid: 422 -[2026-03-26 02:13:54 +0000] [423] [INFO] Booting worker with pid: 423 -[2026-03-26 02:13:54 +0000] [424] [INFO] Booting worker with pid: 424 -[2026-03-26 02:13:54 +0000] [425] [INFO] Booting worker with pid: 425 -[2026-03-26 02:13:54 +0000] [426] [INFO] Booting worker with pid: 426 -[2026-03-26 02:13:54 +0000] [422] [INFO] Started server process [422] -[2026-03-26 02:13:54 +0000] [422] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [422] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [430] [INFO] Booting worker with pid: 430 -[2026-03-26 02:13:54 +0000] [420] [INFO] Started server process [420] -[2026-03-26 02:13:54 +0000] [420] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [420] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [423] [INFO] Started server process [423] -[2026-03-26 02:13:54 +0000] [423] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [423] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [426] [INFO] Started server process [426] -[2026-03-26 02:13:54 +0000] [426] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [426] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [433] [INFO] Booting worker with pid: 433 -[2026-03-26 02:13:54 +0000] [424] [INFO] Started server process [424] -[2026-03-26 02:13:54 +0000] [424] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [424] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [434] [INFO] Booting worker with pid: 434 -[2026-03-26 02:13:54 +0000] [435] [INFO] Booting worker with pid: 435 -[2026-03-26 02:13:54 +0000] [437] [INFO] Booting worker with pid: 437 -[2026-03-26 02:13:54 +0000] [425] [INFO] Started server process [425] -[2026-03-26 02:13:54 +0000] [425] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [425] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [439] [INFO] Booting worker with pid: 439 -[2026-03-26 02:13:54 +0000] [433] [INFO] Started server process [433] -[2026-03-26 02:13:54 +0000] [433] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [433] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [440] [INFO] Booting worker with pid: 440 -[2026-03-26 02:13:54 +0000] [441] [INFO] Booting worker with pid: 441 -[2026-03-26 02:13:54 +0000] [443] [INFO] Booting worker with pid: 443 -[2026-03-26 02:13:54 +0000] [435] [INFO] Started server process [435] -[2026-03-26 02:13:54 +0000] [435] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [435] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [439] [INFO] Started server process [439] -[2026-03-26 02:13:54 +0000] [439] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [439] [INFO] Application startup complete. -[2026-03-26 02:13:54 +0000] [447] [INFO] Booting worker with pid: 447 -[2026-03-26 02:13:54 +0000] [437] [INFO] Started server process [437] -[2026-03-26 02:13:54 +0000] [437] [INFO] Waiting for application startup. -[2026-03-26 02:13:54 +0000] [437] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [440] [INFO] Started server process [440] -[2026-03-26 02:13:55 +0000] [440] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [440] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [430] [INFO] Started server process [430] -[2026-03-26 02:13:55 +0000] [430] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [450] [INFO] Booting worker with pid: 450 -[2026-03-26 02:13:55 +0000] [430] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [434] [INFO] Started server process [434] -[2026-03-26 02:13:55 +0000] [434] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [434] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [443] [INFO] Started server process [443] -[2026-03-26 02:13:55 +0000] [443] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [443] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [441] [INFO] Started server process [441] -[2026-03-26 02:13:55 +0000] [441] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [453] [INFO] Booting worker with pid: 453 -[2026-03-26 02:13:55 +0000] [441] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [455] [INFO] Booting worker with pid: 455 -[2026-03-26 02:13:55 +0000] [456] [INFO] Booting worker with pid: 456 -[2026-03-26 02:13:55 +0000] [447] [INFO] Started server process [447] -[2026-03-26 02:13:55 +0000] [447] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [447] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [459] [INFO] Booting worker with pid: 459 -[2026-03-26 02:13:55 +0000] [453] [INFO] Started server process [453] -[2026-03-26 02:13:55 +0000] [453] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [453] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [460] [INFO] Booting worker with pid: 460 -[2026-03-26 02:13:55 +0000] [450] [INFO] Started server process [450] -[2026-03-26 02:13:55 +0000] [450] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [450] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [461] [INFO] Booting worker with pid: 461 -[2026-03-26 02:13:55 +0000] [459] [INFO] Started server process [459] -[2026-03-26 02:13:55 +0000] [459] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [459] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [463] [INFO] Booting worker with pid: 463 -[2026-03-26 02:13:55 +0000] [455] [INFO] Started server process [455] -[2026-03-26 02:13:55 +0000] [455] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [455] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [465] [INFO] Booting worker with pid: 465 -[2026-03-26 02:13:55 +0000] [466] [INFO] Booting worker with pid: 466 -[2026-03-26 02:13:55 +0000] [470] [INFO] Booting worker with pid: 470 -[2026-03-26 02:13:55 +0000] [460] [INFO] Started server process [460] -[2026-03-26 02:13:55 +0000] [460] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [460] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [456] [INFO] Started server process [456] -[2026-03-26 02:13:55 +0000] [456] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [456] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [463] [INFO] Started server process [463] -[2026-03-26 02:13:55 +0000] [463] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [463] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [474] [INFO] Booting worker with pid: 474 -[2026-03-26 02:13:55 +0000] [465] [INFO] Started server process [465] -[2026-03-26 02:13:55 +0000] [465] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [465] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [466] [INFO] Started server process [466] -[2026-03-26 02:13:55 +0000] [466] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [466] [INFO] Application startup complete. -[2026-03-26 02:13:55 +0000] [470] [INFO] Started server process [470] -[2026-03-26 02:13:55 +0000] [470] [INFO] Waiting for application startup. -[2026-03-26 02:13:55 +0000] [470] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [476] [INFO] Booting worker with pid: 476 -[2026-03-26 02:13:56 +0000] [461] [INFO] Started server process [461] -[2026-03-26 02:13:56 +0000] [461] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [461] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [477] [INFO] Booting worker with pid: 477 -[2026-03-26 02:13:56 +0000] [478] [INFO] Booting worker with pid: 478 -[2026-03-26 02:13:56 +0000] [476] [INFO] Started server process [476] -[2026-03-26 02:13:56 +0000] [476] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [476] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [474] [INFO] Started server process [474] -[2026-03-26 02:13:56 +0000] [474] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [474] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [481] [INFO] Booting worker with pid: 481 -[2026-03-26 02:13:56 +0000] [482] [INFO] Booting worker with pid: 482 -[2026-03-26 02:13:56 +0000] [483] [INFO] Booting worker with pid: 483 -[2026-03-26 02:13:56 +0000] [484] [INFO] Booting worker with pid: 484 -[2026-03-26 02:13:56 +0000] [481] [INFO] Started server process [481] -[2026-03-26 02:13:56 +0000] [481] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [481] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [487] [INFO] Booting worker with pid: 487 -[2026-03-26 02:13:56 +0000] [477] [INFO] Started server process [477] -[2026-03-26 02:13:56 +0000] [477] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [477] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [482] [INFO] Started server process [482] -[2026-03-26 02:13:56 +0000] [482] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [482] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [490] [INFO] Booting worker with pid: 490 -[2026-03-26 02:13:56 +0000] [491] [INFO] Booting worker with pid: 491 -[2026-03-26 02:13:56 +0000] [484] [INFO] Started server process [484] -[2026-03-26 02:13:56 +0000] [484] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [484] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [493] [INFO] Booting worker with pid: 493 -[2026-03-26 02:13:56 +0000] [495] [INFO] Booting worker with pid: 495 -[2026-03-26 02:13:56 +0000] [478] [INFO] Started server process [478] -[2026-03-26 02:13:56 +0000] [478] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [478] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [496] [INFO] Booting worker with pid: 496 -[2026-03-26 02:13:56 +0000] [483] [INFO] Started server process [483] -[2026-03-26 02:13:56 +0000] [483] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [483] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [490] [INFO] Started server process [490] -[2026-03-26 02:13:56 +0000] [490] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [490] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [498] [INFO] Booting worker with pid: 498 -[2026-03-26 02:13:56 +0000] [499] [INFO] Booting worker with pid: 499 -[2026-03-26 02:13:56 +0000] [496] [INFO] Started server process [496] -[2026-03-26 02:13:56 +0000] [496] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [496] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [502] [INFO] Booting worker with pid: 502 -[2026-03-26 02:13:56 +0000] [493] [INFO] Started server process [493] -[2026-03-26 02:13:56 +0000] [493] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [493] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [504] [INFO] Booting worker with pid: 504 -[2026-03-26 02:13:56 +0000] [498] [INFO] Started server process [498] -[2026-03-26 02:13:56 +0000] [498] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [498] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [495] [INFO] Started server process [495] -[2026-03-26 02:13:56 +0000] [495] [INFO] Waiting for application startup. -[2026-03-26 02:13:56 +0000] [495] [INFO] Application startup complete. -[2026-03-26 02:13:56 +0000] [507] [INFO] Booting worker with pid: 507 -[2026-03-26 02:13:57 +0000] [508] [INFO] Booting worker with pid: 508 -[2026-03-26 02:13:57 +0000] [491] [INFO] Started server process [491] -[2026-03-26 02:13:57 +0000] [491] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [491] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [509] [INFO] Booting worker with pid: 509 -[2026-03-26 02:13:57 +0000] [511] [INFO] Booting worker with pid: 511 -[2026-03-26 02:13:57 +0000] [487] [INFO] Started server process [487] -[2026-03-26 02:13:57 +0000] [487] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [487] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [509] [INFO] Started server process [509] -[2026-03-26 02:13:57 +0000] [509] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [509] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [507] [INFO] Started server process [507] -[2026-03-26 02:13:57 +0000] [507] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [507] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [508] [INFO] Started server process [508] -[2026-03-26 02:13:57 +0000] [508] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [508] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [511] [INFO] Started server process [511] -[2026-03-26 02:13:57 +0000] [511] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [511] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [502] [INFO] Started server process [502] -[2026-03-26 02:13:57 +0000] [502] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [502] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [504] [INFO] Started server process [504] -[2026-03-26 02:13:57 +0000] [504] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [504] [INFO] Application startup complete. -[2026-03-26 02:13:57 +0000] [499] [INFO] Started server process [499] -[2026-03-26 02:13:57 +0000] [499] [INFO] Waiting for application startup. -[2026-03-26 02:13:57 +0000] [499] [INFO] Application startup complete. -[2026-03-26 02:13:58 +0000] [135] [ERROR] Exception in ASGI application +[2026-03-29 03:28:13 +0000] [1] [INFO] Starting gunicorn 23.0.0 +[2026-03-29 03:28:13 +0000] [1] [INFO] Listening at: http://0.0.0.0:8080 (1) +[2026-03-29 03:28:13 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker +[2026-03-29 03:28:13 +0000] [7] [INFO] Booting worker with pid: 7 +[2026-03-29 03:28:13 +0000] [8] [INFO] Booting worker with pid: 8 +[2026-03-29 03:28:13 +0000] [9] [INFO] Booting worker with pid: 9 +[2026-03-29 03:28:13 +0000] [8] [INFO] Started server process [8] +[2026-03-29 03:28:13 +0000] [7] [INFO] Started server process [7] +[2026-03-29 03:28:13 +0000] [8] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [7] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [7] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [8] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [12] [INFO] Booting worker with pid: 12 +[2026-03-29 03:28:13 +0000] [9] [INFO] Started server process [9] +[2026-03-29 03:28:13 +0000] [9] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [9] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [12] [INFO] Started server process [12] +[2026-03-29 03:28:13 +0000] [12] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [12] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [15] [INFO] Booting worker with pid: 15 +[2026-03-29 03:28:13 +0000] [16] [INFO] Booting worker with pid: 16 +[2026-03-29 03:28:13 +0000] [17] [INFO] Booting worker with pid: 17 +[2026-03-29 03:28:13 +0000] [15] [INFO] Started server process [15] +[2026-03-29 03:28:13 +0000] [15] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [15] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [16] [INFO] Started server process [16] +[2026-03-29 03:28:13 +0000] [16] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [16] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [20] [INFO] Booting worker with pid: 20 +[2026-03-29 03:28:13 +0000] [22] [INFO] Booting worker with pid: 22 +[2026-03-29 03:28:13 +0000] [17] [INFO] Started server process [17] +[2026-03-29 03:28:13 +0000] [17] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [17] [INFO] Application startup complete. +[2026-03-29 03:28:13 +0000] [20] [INFO] Started server process [20] +[2026-03-29 03:28:13 +0000] [20] [INFO] Waiting for application startup. +[2026-03-29 03:28:13 +0000] [20] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [22] [INFO] Started server process [22] +[2026-03-29 03:28:14 +0000] [22] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [22] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [25] [INFO] Booting worker with pid: 25 +[2026-03-29 03:28:14 +0000] [26] [INFO] Booting worker with pid: 26 +[2026-03-29 03:28:14 +0000] [25] [INFO] Started server process [25] +[2026-03-29 03:28:14 +0000] [25] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [25] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [26] [INFO] Started server process [26] +[2026-03-29 03:28:14 +0000] [26] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [26] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [29] [INFO] Booting worker with pid: 29 +[2026-03-29 03:28:14 +0000] [30] [INFO] Booting worker with pid: 30 +[2026-03-29 03:28:14 +0000] [29] [INFO] Started server process [29] +[2026-03-29 03:28:14 +0000] [29] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [29] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [32] [INFO] Booting worker with pid: 32 +[2026-03-29 03:28:14 +0000] [30] [INFO] Started server process [30] +[2026-03-29 03:28:14 +0000] [30] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [30] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [32] [INFO] Started server process [32] +[2026-03-29 03:28:14 +0000] [32] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [32] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [35] [INFO] Booting worker with pid: 35 +[2026-03-29 03:28:14 +0000] [36] [INFO] Booting worker with pid: 36 +[2026-03-29 03:28:14 +0000] [35] [INFO] Started server process [35] +[2026-03-29 03:28:14 +0000] [35] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [35] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [38] [INFO] Booting worker with pid: 38 +[2026-03-29 03:28:14 +0000] [40] [INFO] Booting worker with pid: 40 +[2026-03-29 03:28:14 +0000] [36] [INFO] Started server process [36] +[2026-03-29 03:28:14 +0000] [36] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [36] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [41] [INFO] Booting worker with pid: 41 +[2026-03-29 03:28:14 +0000] [43] [INFO] Booting worker with pid: 43 +[2026-03-29 03:28:14 +0000] [38] [INFO] Started server process [38] +[2026-03-29 03:28:14 +0000] [38] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [38] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [44] [INFO] Booting worker with pid: 44 +[2026-03-29 03:28:14 +0000] [46] [INFO] Booting worker with pid: 46 +[2026-03-29 03:28:14 +0000] [40] [INFO] Started server process [40] +[2026-03-29 03:28:14 +0000] [40] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [40] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [41] [INFO] Started server process [41] +[2026-03-29 03:28:14 +0000] [41] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [41] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [43] [INFO] Started server process [43] +[2026-03-29 03:28:14 +0000] [43] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [43] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [44] [INFO] Started server process [44] +[2026-03-29 03:28:14 +0000] [44] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [44] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [51] [INFO] Booting worker with pid: 51 +[2026-03-29 03:28:14 +0000] [46] [INFO] Started server process [46] +[2026-03-29 03:28:14 +0000] [46] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [46] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [52] [INFO] Booting worker with pid: 52 +[2026-03-29 03:28:14 +0000] [51] [INFO] Started server process [51] +[2026-03-29 03:28:14 +0000] [51] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [51] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [54] [INFO] Booting worker with pid: 54 +[2026-03-29 03:28:14 +0000] [55] [INFO] Booting worker with pid: 55 +[2026-03-29 03:28:14 +0000] [52] [INFO] Started server process [52] +[2026-03-29 03:28:14 +0000] [52] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [52] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [54] [INFO] Started server process [54] +[2026-03-29 03:28:14 +0000] [54] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [54] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [58] [INFO] Booting worker with pid: 58 +[2026-03-29 03:28:14 +0000] [55] [INFO] Started server process [55] +[2026-03-29 03:28:14 +0000] [55] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [55] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [58] [INFO] Started server process [58] +[2026-03-29 03:28:14 +0000] [58] [INFO] Waiting for application startup. +[2026-03-29 03:28:14 +0000] [58] [INFO] Application startup complete. +[2026-03-29 03:28:14 +0000] [61] [INFO] Booting worker with pid: 61 +[2026-03-29 03:28:15 +0000] [63] [INFO] Booting worker with pid: 63 +[2026-03-29 03:28:15 +0000] [61] [INFO] Started server process [61] +[2026-03-29 03:28:15 +0000] [61] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [61] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [65] [INFO] Booting worker with pid: 65 +[2026-03-29 03:28:15 +0000] [63] [INFO] Started server process [63] +[2026-03-29 03:28:15 +0000] [63] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [63] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [67] [INFO] Booting worker with pid: 67 +[2026-03-29 03:28:15 +0000] [65] [INFO] Started server process [65] +[2026-03-29 03:28:15 +0000] [65] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [65] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [67] [INFO] Started server process [67] +[2026-03-29 03:28:15 +0000] [69] [INFO] Booting worker with pid: 69 +[2026-03-29 03:28:15 +0000] [67] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [67] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [70] [INFO] Booting worker with pid: 70 +[2026-03-29 03:28:15 +0000] [71] [INFO] Booting worker with pid: 71 +[2026-03-29 03:28:15 +0000] [69] [INFO] Started server process [69] +[2026-03-29 03:28:15 +0000] [69] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [69] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [70] [INFO] Started server process [70] +[2026-03-29 03:28:15 +0000] [70] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [70] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [75] [INFO] Booting worker with pid: 75 +[2026-03-29 03:28:15 +0000] [71] [INFO] Started server process [71] +[2026-03-29 03:28:15 +0000] [71] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [71] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [76] [INFO] Booting worker with pid: 76 +[2026-03-29 03:28:15 +0000] [77] [INFO] Booting worker with pid: 77 +[2026-03-29 03:28:15 +0000] [75] [INFO] Started server process [75] +[2026-03-29 03:28:15 +0000] [75] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [75] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [76] [INFO] Started server process [76] +[2026-03-29 03:28:15 +0000] [76] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [76] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [81] [INFO] Booting worker with pid: 81 +[2026-03-29 03:28:15 +0000] [77] [INFO] Started server process [77] +[2026-03-29 03:28:15 +0000] [77] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [77] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [83] [INFO] Booting worker with pid: 83 +[2026-03-29 03:28:15 +0000] [81] [INFO] Started server process [81] +[2026-03-29 03:28:15 +0000] [81] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [81] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [85] [INFO] Booting worker with pid: 85 +[2026-03-29 03:28:15 +0000] [83] [INFO] Started server process [83] +[2026-03-29 03:28:15 +0000] [83] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [83] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [87] [INFO] Booting worker with pid: 87 +[2026-03-29 03:28:15 +0000] [85] [INFO] Started server process [85] +[2026-03-29 03:28:15 +0000] [85] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [85] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [89] [INFO] Booting worker with pid: 89 +[2026-03-29 03:28:15 +0000] [87] [INFO] Started server process [87] +[2026-03-29 03:28:15 +0000] [87] [INFO] Waiting for application startup. +[2026-03-29 03:28:15 +0000] [87] [INFO] Application startup complete. +[2026-03-29 03:28:15 +0000] [90] [INFO] Booting worker with pid: 90 +[2026-03-29 03:28:16 +0000] [89] [INFO] Started server process [89] +[2026-03-29 03:28:16 +0000] [89] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [89] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [93] [INFO] Booting worker with pid: 93 +[2026-03-29 03:28:16 +0000] [90] [INFO] Started server process [90] +[2026-03-29 03:28:16 +0000] [90] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [90] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [93] [INFO] Started server process [93] +[2026-03-29 03:28:16 +0000] [93] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [93] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [95] [INFO] Booting worker with pid: 95 +[2026-03-29 03:28:16 +0000] [96] [INFO] Booting worker with pid: 96 +[2026-03-29 03:28:16 +0000] [97] [INFO] Booting worker with pid: 97 +[2026-03-29 03:28:16 +0000] [96] [INFO] Started server process [96] +[2026-03-29 03:28:16 +0000] [96] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [96] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [95] [INFO] Started server process [95] +[2026-03-29 03:28:16 +0000] [95] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [95] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [100] [INFO] Booting worker with pid: 100 +[2026-03-29 03:28:16 +0000] [97] [INFO] Started server process [97] +[2026-03-29 03:28:16 +0000] [97] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [97] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [102] [INFO] Booting worker with pid: 102 +[2026-03-29 03:28:16 +0000] [103] [INFO] Booting worker with pid: 103 +[2026-03-29 03:28:16 +0000] [100] [INFO] Started server process [100] +[2026-03-29 03:28:16 +0000] [100] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [100] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [102] [INFO] Started server process [102] +[2026-03-29 03:28:16 +0000] [102] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [102] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [107] [INFO] Booting worker with pid: 107 +[2026-03-29 03:28:16 +0000] [103] [INFO] Started server process [103] +[2026-03-29 03:28:16 +0000] [103] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [103] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [108] [INFO] Booting worker with pid: 108 +[2026-03-29 03:28:16 +0000] [109] [INFO] Booting worker with pid: 109 +[2026-03-29 03:28:16 +0000] [110] [INFO] Booting worker with pid: 110 +[2026-03-29 03:28:16 +0000] [107] [INFO] Started server process [107] +[2026-03-29 03:28:16 +0000] [107] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [107] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [113] [INFO] Booting worker with pid: 113 +[2026-03-29 03:28:16 +0000] [108] [INFO] Started server process [108] +[2026-03-29 03:28:16 +0000] [108] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [108] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [109] [INFO] Started server process [109] +[2026-03-29 03:28:16 +0000] [109] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [109] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [110] [INFO] Started server process [110] +[2026-03-29 03:28:16 +0000] [110] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [110] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [117] [INFO] Booting worker with pid: 117 +[2026-03-29 03:28:16 +0000] [113] [INFO] Started server process [113] +[2026-03-29 03:28:16 +0000] [113] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [113] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [118] [INFO] Booting worker with pid: 118 +[2026-03-29 03:28:16 +0000] [119] [INFO] Booting worker with pid: 119 +[2026-03-29 03:28:16 +0000] [121] [INFO] Booting worker with pid: 121 +[2026-03-29 03:28:16 +0000] [117] [INFO] Started server process [117] +[2026-03-29 03:28:16 +0000] [117] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [117] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [118] [INFO] Started server process [118] +[2026-03-29 03:28:16 +0000] [118] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [118] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [119] [INFO] Started server process [119] +[2026-03-29 03:28:16 +0000] [119] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [119] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [124] [INFO] Booting worker with pid: 124 +[2026-03-29 03:28:16 +0000] [121] [INFO] Started server process [121] +[2026-03-29 03:28:16 +0000] [121] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [121] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [126] [INFO] Booting worker with pid: 126 +[2026-03-29 03:28:16 +0000] [128] [INFO] Booting worker with pid: 128 +[2026-03-29 03:28:16 +0000] [124] [INFO] Started server process [124] +[2026-03-29 03:28:16 +0000] [124] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [124] [INFO] Application startup complete. +[2026-03-29 03:28:16 +0000] [130] [INFO] Booting worker with pid: 130 +[2026-03-29 03:28:16 +0000] [126] [INFO] Started server process [126] +[2026-03-29 03:28:16 +0000] [126] [INFO] Waiting for application startup. +[2026-03-29 03:28:16 +0000] [126] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [131] [INFO] Booting worker with pid: 131 +[2026-03-29 03:28:17 +0000] [128] [INFO] Started server process [128] +[2026-03-29 03:28:17 +0000] [128] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [128] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [133] [INFO] Booting worker with pid: 133 +[2026-03-29 03:28:17 +0000] [130] [INFO] Started server process [130] +[2026-03-29 03:28:17 +0000] [130] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [130] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [135] [INFO] Booting worker with pid: 135 +[2026-03-29 03:28:17 +0000] [131] [INFO] Started server process [131] +[2026-03-29 03:28:17 +0000] [131] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [131] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [137] [INFO] Booting worker with pid: 137 +[2026-03-29 03:28:17 +0000] [139] [INFO] Booting worker with pid: 139 +[2026-03-29 03:28:17 +0000] [133] [INFO] Started server process [133] +[2026-03-29 03:28:17 +0000] [133] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [133] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [140] [INFO] Booting worker with pid: 140 +[2026-03-29 03:28:17 +0000] [135] [INFO] Started server process [135] +[2026-03-29 03:28:17 +0000] [135] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [135] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [142] [INFO] Booting worker with pid: 142 +[2026-03-29 03:28:17 +0000] [137] [INFO] Started server process [137] +[2026-03-29 03:28:17 +0000] [137] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [137] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [139] [INFO] Started server process [139] +[2026-03-29 03:28:17 +0000] [139] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [139] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [140] [INFO] Started server process [140] +[2026-03-29 03:28:17 +0000] [140] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [140] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [146] [INFO] Booting worker with pid: 146 +[2026-03-29 03:28:17 +0000] [142] [INFO] Started server process [142] +[2026-03-29 03:28:17 +0000] [142] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [142] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [148] [INFO] Booting worker with pid: 148 +[2026-03-29 03:28:17 +0000] [149] [INFO] Booting worker with pid: 149 +[2026-03-29 03:28:17 +0000] [146] [INFO] Started server process [146] +[2026-03-29 03:28:17 +0000] [146] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [146] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [151] [INFO] Booting worker with pid: 151 +[2026-03-29 03:28:17 +0000] [148] [INFO] Started server process [148] +[2026-03-29 03:28:17 +0000] [148] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [148] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [154] [INFO] Booting worker with pid: 154 +[2026-03-29 03:28:17 +0000] [149] [INFO] Started server process [149] +[2026-03-29 03:28:17 +0000] [149] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [149] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [155] [INFO] Booting worker with pid: 155 +[2026-03-29 03:28:17 +0000] [151] [INFO] Started server process [151] +[2026-03-29 03:28:17 +0000] [151] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [151] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [157] [INFO] Booting worker with pid: 157 +[2026-03-29 03:28:17 +0000] [158] [INFO] Booting worker with pid: 158 +[2026-03-29 03:28:17 +0000] [154] [INFO] Started server process [154] +[2026-03-29 03:28:17 +0000] [154] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [154] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [155] [INFO] Started server process [155] +[2026-03-29 03:28:17 +0000] [155] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [155] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [161] [INFO] Booting worker with pid: 161 +[2026-03-29 03:28:17 +0000] [163] [INFO] Booting worker with pid: 163 +[2026-03-29 03:28:17 +0000] [165] [INFO] Booting worker with pid: 165 +[2026-03-29 03:28:17 +0000] [157] [INFO] Started server process [157] +[2026-03-29 03:28:17 +0000] [157] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [157] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [158] [INFO] Started server process [158] +[2026-03-29 03:28:17 +0000] [158] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [158] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [166] [INFO] Booting worker with pid: 166 +[2026-03-29 03:28:17 +0000] [167] [INFO] Booting worker with pid: 167 +[2026-03-29 03:28:17 +0000] [169] [INFO] Booting worker with pid: 169 +[2026-03-29 03:28:17 +0000] [161] [INFO] Started server process [161] +[2026-03-29 03:28:17 +0000] [161] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [161] [INFO] Application startup complete. +[2026-03-29 03:28:17 +0000] [172] [INFO] Booting worker with pid: 172 +[2026-03-29 03:28:17 +0000] [163] [INFO] Started server process [163] +[2026-03-29 03:28:17 +0000] [163] [INFO] Waiting for application startup. +[2026-03-29 03:28:17 +0000] [163] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [173] [INFO] Booting worker with pid: 173 +[2026-03-29 03:28:18 +0000] [165] [INFO] Started server process [165] +[2026-03-29 03:28:18 +0000] [165] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [165] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [166] [INFO] Started server process [166] +[2026-03-29 03:28:18 +0000] [166] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [166] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [167] [INFO] Started server process [167] +[2026-03-29 03:28:18 +0000] [167] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [167] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [169] [INFO] Started server process [169] +[2026-03-29 03:28:18 +0000] [169] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [169] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [177] [INFO] Booting worker with pid: 177 +[2026-03-29 03:28:18 +0000] [172] [INFO] Started server process [172] +[2026-03-29 03:28:18 +0000] [172] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [172] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [180] [INFO] Booting worker with pid: 180 +[2026-03-29 03:28:18 +0000] [173] [INFO] Started server process [173] +[2026-03-29 03:28:18 +0000] [173] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [173] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [181] [INFO] Booting worker with pid: 181 +[2026-03-29 03:28:18 +0000] [177] [INFO] Started server process [177] +[2026-03-29 03:28:18 +0000] [177] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [177] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [183] [INFO] Booting worker with pid: 183 +[2026-03-29 03:28:18 +0000] [180] [INFO] Started server process [180] +[2026-03-29 03:28:18 +0000] [180] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [180] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [186] [INFO] Booting worker with pid: 186 +[2026-03-29 03:28:18 +0000] [181] [INFO] Started server process [181] +[2026-03-29 03:28:18 +0000] [181] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [181] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [183] [INFO] Started server process [183] +[2026-03-29 03:28:18 +0000] [183] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [183] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [188] [INFO] Booting worker with pid: 188 +[2026-03-29 03:28:18 +0000] [189] [INFO] Booting worker with pid: 189 +[2026-03-29 03:28:18 +0000] [191] [INFO] Booting worker with pid: 191 +[2026-03-29 03:28:18 +0000] [186] [INFO] Started server process [186] +[2026-03-29 03:28:18 +0000] [186] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [186] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [188] [INFO] Started server process [188] +[2026-03-29 03:28:18 +0000] [188] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [188] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [189] [INFO] Started server process [189] +[2026-03-29 03:28:18 +0000] [189] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [189] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [194] [INFO] Booting worker with pid: 194 +[2026-03-29 03:28:18 +0000] [195] [INFO] Booting worker with pid: 195 +[2026-03-29 03:28:18 +0000] [191] [INFO] Started server process [191] +[2026-03-29 03:28:18 +0000] [191] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [191] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [197] [INFO] Booting worker with pid: 197 +[2026-03-29 03:28:18 +0000] [194] [INFO] Started server process [194] +[2026-03-29 03:28:18 +0000] [194] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [194] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [195] [INFO] Started server process [195] +[2026-03-29 03:28:18 +0000] [195] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [195] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [200] [INFO] Booting worker with pid: 200 +[2026-03-29 03:28:18 +0000] [197] [INFO] Started server process [197] +[2026-03-29 03:28:18 +0000] [197] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [197] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [202] [INFO] Booting worker with pid: 202 +[2026-03-29 03:28:18 +0000] [204] [INFO] Booting worker with pid: 204 +[2026-03-29 03:28:18 +0000] [200] [INFO] Started server process [200] +[2026-03-29 03:28:18 +0000] [200] [INFO] Waiting for application startup. +[2026-03-29 03:28:18 +0000] [200] [INFO] Application startup complete. +[2026-03-29 03:28:18 +0000] [205] [INFO] Booting worker with pid: 205 +[2026-03-29 03:28:19 +0000] [202] [INFO] Started server process [202] +[2026-03-29 03:28:19 +0000] [202] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [202] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [207] [INFO] Booting worker with pid: 207 +[2026-03-29 03:28:19 +0000] [209] [INFO] Booting worker with pid: 209 +[2026-03-29 03:28:19 +0000] [204] [INFO] Started server process [204] +[2026-03-29 03:28:19 +0000] [204] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [204] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [211] [INFO] Booting worker with pid: 211 +[2026-03-29 03:28:19 +0000] [205] [INFO] Started server process [205] +[2026-03-29 03:28:19 +0000] [205] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [205] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [212] [INFO] Booting worker with pid: 212 +[2026-03-29 03:28:19 +0000] [213] [INFO] Booting worker with pid: 213 +[2026-03-29 03:28:19 +0000] [207] [INFO] Started server process [207] +[2026-03-29 03:28:19 +0000] [207] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [207] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [216] [INFO] Booting worker with pid: 216 +[2026-03-29 03:28:19 +0000] [209] [INFO] Started server process [209] +[2026-03-29 03:28:19 +0000] [209] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [209] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [211] [INFO] Started server process [211] +[2026-03-29 03:28:19 +0000] [211] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [211] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [212] [INFO] Started server process [212] +[2026-03-29 03:28:19 +0000] [212] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [212] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [213] [INFO] Started server process [213] +[2026-03-29 03:28:19 +0000] [213] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [213] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [220] [INFO] Booting worker with pid: 220 +[2026-03-29 03:28:19 +0000] [216] [INFO] Started server process [216] +[2026-03-29 03:28:19 +0000] [216] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [216] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [222] [INFO] Booting worker with pid: 222 +[2026-03-29 03:28:19 +0000] [220] [INFO] Started server process [220] +[2026-03-29 03:28:19 +0000] [220] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [220] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [224] [INFO] Booting worker with pid: 224 +[2026-03-29 03:28:19 +0000] [225] [INFO] Booting worker with pid: 225 +[2026-03-29 03:28:19 +0000] [227] [INFO] Booting worker with pid: 227 +[2026-03-29 03:28:19 +0000] [222] [INFO] Started server process [222] +[2026-03-29 03:28:19 +0000] [222] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [222] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [228] [INFO] Booting worker with pid: 228 +[2026-03-29 03:28:19 +0000] [224] [INFO] Started server process [224] +[2026-03-29 03:28:19 +0000] [224] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [224] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [230] [INFO] Booting worker with pid: 230 +[2026-03-29 03:28:19 +0000] [227] [INFO] Started server process [227] +[2026-03-29 03:28:19 +0000] [227] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [227] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [225] [INFO] Started server process [225] +[2026-03-29 03:28:19 +0000] [225] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [225] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [228] [INFO] Started server process [228] +[2026-03-29 03:28:19 +0000] [228] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [228] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [234] [INFO] Booting worker with pid: 234 +[2026-03-29 03:28:19 +0000] [236] [INFO] Booting worker with pid: 236 +[2026-03-29 03:28:19 +0000] [230] [INFO] Started server process [230] +[2026-03-29 03:28:19 +0000] [230] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [230] [INFO] Application startup complete. +[2026-03-29 03:28:19 +0000] [237] [INFO] Booting worker with pid: 237 +[2026-03-29 03:28:19 +0000] [238] [INFO] Booting worker with pid: 238 +[2026-03-29 03:28:19 +0000] [239] [INFO] Booting worker with pid: 239 +[2026-03-29 03:28:19 +0000] [234] [INFO] Started server process [234] +[2026-03-29 03:28:19 +0000] [234] [INFO] Waiting for application startup. +[2026-03-29 03:28:19 +0000] [234] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [243] [INFO] Booting worker with pid: 243 +[2026-03-29 03:28:20 +0000] [237] [INFO] Started server process [237] +[2026-03-29 03:28:20 +0000] [237] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [237] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [244] [INFO] Booting worker with pid: 244 +[2026-03-29 03:28:20 +0000] [236] [INFO] Started server process [236] +[2026-03-29 03:28:20 +0000] [236] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [236] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [246] [INFO] Booting worker with pid: 246 +[2026-03-29 03:28:20 +0000] [238] [INFO] Started server process [238] +[2026-03-29 03:28:20 +0000] [238] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [238] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [239] [INFO] Started server process [239] +[2026-03-29 03:28:20 +0000] [239] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [239] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [248] [INFO] Booting worker with pid: 248 +[2026-03-29 03:28:20 +0000] [249] [INFO] Booting worker with pid: 249 +[2026-03-29 03:28:20 +0000] [244] [INFO] Started server process [244] +[2026-03-29 03:28:20 +0000] [244] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [244] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [246] [INFO] Started server process [246] +[2026-03-29 03:28:20 +0000] [246] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [246] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [252] [INFO] Booting worker with pid: 252 +[2026-03-29 03:28:20 +0000] [253] [INFO] Booting worker with pid: 253 +[2026-03-29 03:28:20 +0000] [255] [INFO] Booting worker with pid: 255 +[2026-03-29 03:28:20 +0000] [249] [INFO] Started server process [249] +[2026-03-29 03:28:20 +0000] [249] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [249] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [243] [INFO] Started server process [243] +[2026-03-29 03:28:20 +0000] [243] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [243] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [252] [INFO] Started server process [252] +[2026-03-29 03:28:20 +0000] [252] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [252] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [258] [INFO] Booting worker with pid: 258 +[2026-03-29 03:28:20 +0000] [248] [INFO] Started server process [248] +[2026-03-29 03:28:20 +0000] [253] [INFO] Started server process [253] +[2026-03-29 03:28:20 +0000] [253] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [253] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [248] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [248] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [255] [INFO] Started server process [255] +[2026-03-29 03:28:20 +0000] [255] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [262] [INFO] Booting worker with pid: 262 +[2026-03-29 03:28:20 +0000] [255] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [263] [INFO] Booting worker with pid: 263 +[2026-03-29 03:28:20 +0000] [264] [INFO] Booting worker with pid: 264 +[2026-03-29 03:28:20 +0000] [258] [INFO] Started server process [258] +[2026-03-29 03:28:20 +0000] [258] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [258] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [266] [INFO] Booting worker with pid: 266 +[2026-03-29 03:28:20 +0000] [267] [INFO] Booting worker with pid: 267 +[2026-03-29 03:28:20 +0000] [268] [INFO] Booting worker with pid: 268 +[2026-03-29 03:28:20 +0000] [264] [INFO] Started server process [264] +[2026-03-29 03:28:20 +0000] [264] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [264] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [262] [INFO] Started server process [262] +[2026-03-29 03:28:20 +0000] [262] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [262] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [271] [INFO] Booting worker with pid: 271 +[2026-03-29 03:28:20 +0000] [274] [INFO] Booting worker with pid: 274 +[2026-03-29 03:28:20 +0000] [263] [INFO] Started server process [263] +[2026-03-29 03:28:20 +0000] [263] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [263] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [275] [INFO] Booting worker with pid: 275 +[2026-03-29 03:28:20 +0000] [266] [INFO] Started server process [266] +[2026-03-29 03:28:20 +0000] [266] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [266] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [268] [INFO] Started server process [268] +[2026-03-29 03:28:20 +0000] [268] [INFO] Waiting for application startup. +[2026-03-29 03:28:20 +0000] [268] [INFO] Application startup complete. +[2026-03-29 03:28:20 +0000] [277] [INFO] Booting worker with pid: 277 +[2026-03-29 03:28:20 +0000] [278] [INFO] Booting worker with pid: 278 +[2026-03-29 03:28:20 +0000] [281] [INFO] Booting worker with pid: 281 +[2026-03-29 03:28:21 +0000] [271] [INFO] Started server process [271] +[2026-03-29 03:28:21 +0000] [271] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [271] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [283] [INFO] Booting worker with pid: 283 +[2026-03-29 03:28:21 +0000] [275] [INFO] Started server process [275] +[2026-03-29 03:28:21 +0000] [275] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [275] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [285] [INFO] Booting worker with pid: 285 +[2026-03-29 03:28:21 +0000] [267] [INFO] Started server process [267] +[2026-03-29 03:28:21 +0000] [267] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [267] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [286] [INFO] Booting worker with pid: 286 +[2026-03-29 03:28:21 +0000] [274] [INFO] Started server process [274] +[2026-03-29 03:28:21 +0000] [274] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [274] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [281] [INFO] Started server process [281] +[2026-03-29 03:28:21 +0000] [281] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [281] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [289] [INFO] Booting worker with pid: 289 +[2026-03-29 03:28:21 +0000] [290] [INFO] Booting worker with pid: 290 +[2026-03-29 03:28:21 +0000] [277] [INFO] Started server process [277] +[2026-03-29 03:28:21 +0000] [277] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [277] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [292] [INFO] Booting worker with pid: 292 +[2026-03-29 03:28:21 +0000] [294] [INFO] Booting worker with pid: 294 +[2026-03-29 03:28:21 +0000] [286] [INFO] Started server process [286] +[2026-03-29 03:28:21 +0000] [286] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [286] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [297] [INFO] Booting worker with pid: 297 +[2026-03-29 03:28:21 +0000] [278] [INFO] Started server process [278] +[2026-03-29 03:28:21 +0000] [278] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [278] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [285] [INFO] Started server process [285] +[2026-03-29 03:28:21 +0000] [285] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [285] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [283] [INFO] Started server process [283] +[2026-03-29 03:28:21 +0000] [283] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [283] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [298] [INFO] Booting worker with pid: 298 +[2026-03-29 03:28:21 +0000] [300] [INFO] Booting worker with pid: 300 +[2026-03-29 03:28:21 +0000] [289] [INFO] Started server process [289] +[2026-03-29 03:28:21 +0000] [289] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [289] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [294] [INFO] Started server process [294] +[2026-03-29 03:28:21 +0000] [294] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [294] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [290] [INFO] Started server process [290] +[2026-03-29 03:28:21 +0000] [290] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [304] [INFO] Booting worker with pid: 304 +[2026-03-29 03:28:21 +0000] [290] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [306] [INFO] Booting worker with pid: 306 +[2026-03-29 03:28:21 +0000] [297] [INFO] Started server process [297] +[2026-03-29 03:28:21 +0000] [297] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [292] [INFO] Started server process [292] +[2026-03-29 03:28:21 +0000] [292] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [297] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [292] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [307] [INFO] Booting worker with pid: 307 +[2026-03-29 03:28:21 +0000] [308] [INFO] Booting worker with pid: 308 +[2026-03-29 03:28:21 +0000] [309] [INFO] Booting worker with pid: 309 +[2026-03-29 03:28:21 +0000] [310] [INFO] Booting worker with pid: 310 +[2026-03-29 03:28:21 +0000] [313] [INFO] Booting worker with pid: 313 +[2026-03-29 03:28:21 +0000] [315] [INFO] Booting worker with pid: 315 +[2026-03-29 03:28:21 +0000] [300] [INFO] Started server process [300] +[2026-03-29 03:28:21 +0000] [300] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [300] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [306] [INFO] Started server process [306] +[2026-03-29 03:28:21 +0000] [306] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [306] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [298] [INFO] Started server process [298] +[2026-03-29 03:28:21 +0000] [298] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [298] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [318] [INFO] Booting worker with pid: 318 +[2026-03-29 03:28:21 +0000] [309] [INFO] Started server process [309] +[2026-03-29 03:28:21 +0000] [309] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [309] [INFO] Application startup complete. +[2026-03-29 03:28:21 +0000] [304] [INFO] Started server process [304] +[2026-03-29 03:28:21 +0000] [304] [INFO] Waiting for application startup. +[2026-03-29 03:28:21 +0000] [304] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [319] [INFO] Booting worker with pid: 319 +[2026-03-29 03:28:22 +0000] [321] [INFO] Booting worker with pid: 321 +[2026-03-29 03:28:22 +0000] [307] [INFO] Started server process [307] +[2026-03-29 03:28:22 +0000] [307] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [307] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [322] [INFO] Booting worker with pid: 322 +[2026-03-29 03:28:22 +0000] [327] [INFO] Booting worker with pid: 327 +[2026-03-29 03:28:22 +0000] [319] [INFO] Started server process [319] +[2026-03-29 03:28:22 +0000] [319] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [319] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [310] [INFO] Started server process [310] +[2026-03-29 03:28:22 +0000] [310] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [310] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [313] [INFO] Started server process [313] +[2026-03-29 03:28:22 +0000] [313] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [313] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [329] [INFO] Booting worker with pid: 329 +[2026-03-29 03:28:22 +0000] [315] [INFO] Started server process [315] +[2026-03-29 03:28:22 +0000] [315] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [315] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [308] [INFO] Started server process [308] +[2026-03-29 03:28:22 +0000] [308] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [308] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [331] [INFO] Booting worker with pid: 331 +[2026-03-29 03:28:22 +0000] [321] [INFO] Started server process [321] +[2026-03-29 03:28:22 +0000] [321] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [321] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [334] [INFO] Booting worker with pid: 334 +[2026-03-29 03:28:22 +0000] [322] [INFO] Started server process [322] +[2026-03-29 03:28:22 +0000] [322] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [322] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [329] [INFO] Started server process [329] +[2026-03-29 03:28:22 +0000] [329] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [329] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [337] [INFO] Booting worker with pid: 337 +[2026-03-29 03:28:22 +0000] [338] [INFO] Booting worker with pid: 338 +[2026-03-29 03:28:22 +0000] [327] [INFO] Started server process [327] +[2026-03-29 03:28:22 +0000] [327] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [327] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [339] [INFO] Booting worker with pid: 339 +[2026-03-29 03:28:22 +0000] [331] [INFO] Started server process [331] +[2026-03-29 03:28:22 +0000] [331] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [331] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [318] [INFO] Started server process [318] +[2026-03-29 03:28:22 +0000] [318] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [318] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [341] [INFO] Booting worker with pid: 341 +[2026-03-29 03:28:22 +0000] [343] [INFO] Booting worker with pid: 343 +[2026-03-29 03:28:22 +0000] [338] [INFO] Started server process [338] +[2026-03-29 03:28:22 +0000] [338] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [338] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [345] [INFO] Booting worker with pid: 345 +[2026-03-29 03:28:22 +0000] [347] [INFO] Booting worker with pid: 347 +[2026-03-29 03:28:22 +0000] [348] [INFO] Booting worker with pid: 348 +[2026-03-29 03:28:22 +0000] [337] [INFO] Started server process [337] +[2026-03-29 03:28:22 +0000] [337] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [337] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [334] [INFO] Started server process [334] +[2026-03-29 03:28:22 +0000] [334] [INFO] Waiting for application startup. +[2026-03-29 03:28:22 +0000] [334] [INFO] Application startup complete. +[2026-03-29 03:28:22 +0000] [349] [INFO] Booting worker with pid: 349 +[2026-03-29 03:28:23 +0000] [351] [INFO] Booting worker with pid: 351 +[2026-03-29 03:28:23 +0000] [343] [INFO] Started server process [343] +[2026-03-29 03:28:23 +0000] [343] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [343] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [347] [INFO] Started server process [347] +[2026-03-29 03:28:23 +0000] [347] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [347] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [354] [INFO] Booting worker with pid: 354 +[2026-03-29 03:28:23 +0000] [356] [INFO] Booting worker with pid: 356 +[2026-03-29 03:28:23 +0000] [358] [INFO] Booting worker with pid: 358 +[2026-03-29 03:28:23 +0000] [348] [INFO] Started server process [348] +[2026-03-29 03:28:23 +0000] [348] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [348] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [351] [INFO] Started server process [351] +[2026-03-29 03:28:23 +0000] [351] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [351] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [359] [INFO] Booting worker with pid: 359 +[2026-03-29 03:28:23 +0000] [360] [INFO] Booting worker with pid: 360 +[2026-03-29 03:28:23 +0000] [339] [INFO] Started server process [339] +[2026-03-29 03:28:23 +0000] [339] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [339] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [363] [INFO] Booting worker with pid: 363 +[2026-03-29 03:28:23 +0000] [356] [INFO] Started server process [356] +[2026-03-29 03:28:23 +0000] [356] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [356] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [367] [INFO] Booting worker with pid: 367 +[2026-03-29 03:28:23 +0000] [349] [INFO] Started server process [349] +[2026-03-29 03:28:23 +0000] [349] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [349] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [345] [INFO] Started server process [345] +[2026-03-29 03:28:23 +0000] [345] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [345] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [371] [INFO] Booting worker with pid: 371 +[2026-03-29 03:28:23 +0000] [354] [INFO] Started server process [354] +[2026-03-29 03:28:23 +0000] [354] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [354] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [372] [INFO] Booting worker with pid: 372 +[2026-03-29 03:28:23 +0000] [360] [INFO] Started server process [360] +[2026-03-29 03:28:23 +0000] [360] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [360] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [341] [INFO] Started server process [341] +[2026-03-29 03:28:23 +0000] [341] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [341] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [373] [INFO] Booting worker with pid: 373 +[2026-03-29 03:28:23 +0000] [358] [INFO] Started server process [358] +[2026-03-29 03:28:23 +0000] [358] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [358] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [359] [INFO] Started server process [359] +[2026-03-29 03:28:23 +0000] [359] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [359] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [375] [INFO] Booting worker with pid: 375 +[2026-03-29 03:28:23 +0000] [363] [INFO] Started server process [363] +[2026-03-29 03:28:23 +0000] [363] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [363] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [377] [INFO] Booting worker with pid: 377 +[2026-03-29 03:28:23 +0000] [367] [INFO] Started server process [367] +[2026-03-29 03:28:23 +0000] [367] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [367] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [379] [INFO] Booting worker with pid: 379 +[2026-03-29 03:28:23 +0000] [382] [INFO] Booting worker with pid: 382 +[2026-03-29 03:28:23 +0000] [375] [INFO] Started server process [375] +[2026-03-29 03:28:23 +0000] [375] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [375] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [372] [INFO] Started server process [372] +[2026-03-29 03:28:23 +0000] [372] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [372] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [384] [INFO] Booting worker with pid: 384 +[2026-03-29 03:28:23 +0000] [371] [INFO] Started server process [371] +[2026-03-29 03:28:23 +0000] [371] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [371] [INFO] Application startup complete. +[2026-03-29 03:28:23 +0000] [385] [INFO] Booting worker with pid: 385 +[2026-03-29 03:28:23 +0000] [373] [INFO] Started server process [373] +[2026-03-29 03:28:23 +0000] [373] [INFO] Waiting for application startup. +[2026-03-29 03:28:23 +0000] [373] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [387] [INFO] Booting worker with pid: 387 +[2026-03-29 03:28:24 +0000] [379] [INFO] Started server process [379] +[2026-03-29 03:28:24 +0000] [379] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [379] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [389] [INFO] Booting worker with pid: 389 +[2026-03-29 03:28:24 +0000] [377] [INFO] Started server process [377] +[2026-03-29 03:28:24 +0000] [377] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [377] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [391] [INFO] Booting worker with pid: 391 +[2026-03-29 03:28:24 +0000] [382] [INFO] Started server process [382] +[2026-03-29 03:28:24 +0000] [382] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [382] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [384] [INFO] Started server process [384] +[2026-03-29 03:28:24 +0000] [384] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [384] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [389] [INFO] Started server process [389] +[2026-03-29 03:28:24 +0000] [389] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [389] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [395] [INFO] Booting worker with pid: 395 +[2026-03-29 03:28:24 +0000] [385] [INFO] Started server process [385] +[2026-03-29 03:28:24 +0000] [385] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [385] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [396] [INFO] Booting worker with pid: 396 +[2026-03-29 03:28:24 +0000] [391] [INFO] Started server process [391] +[2026-03-29 03:28:24 +0000] [391] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [391] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [398] [INFO] Booting worker with pid: 398 +[2026-03-29 03:28:24 +0000] [399] [INFO] Booting worker with pid: 399 +[2026-03-29 03:28:24 +0000] [401] [INFO] Booting worker with pid: 401 +[2026-03-29 03:28:24 +0000] [402] [INFO] Booting worker with pid: 402 +[2026-03-29 03:28:24 +0000] [405] [INFO] Booting worker with pid: 405 +[2026-03-29 03:28:24 +0000] [398] [INFO] Started server process [398] +[2026-03-29 03:28:24 +0000] [398] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [398] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [387] [INFO] Started server process [387] +[2026-03-29 03:28:24 +0000] [387] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [387] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [395] [INFO] Started server process [395] +[2026-03-29 03:28:24 +0000] [395] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [395] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [407] [INFO] Booting worker with pid: 407 +[2026-03-29 03:28:24 +0000] [408] [INFO] Booting worker with pid: 408 +[2026-03-29 03:28:24 +0000] [396] [INFO] Started server process [396] +[2026-03-29 03:28:24 +0000] [396] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [396] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [401] [INFO] Started server process [401] +[2026-03-29 03:28:24 +0000] [401] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [401] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [411] [INFO] Booting worker with pid: 411 +[2026-03-29 03:28:24 +0000] [413] [INFO] Booting worker with pid: 413 +[2026-03-29 03:28:24 +0000] [399] [INFO] Started server process [399] +[2026-03-29 03:28:24 +0000] [399] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [399] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [402] [INFO] Started server process [402] +[2026-03-29 03:28:24 +0000] [402] [INFO] Waiting for application startup. +[2026-03-29 03:28:24 +0000] [402] [INFO] Application startup complete. +[2026-03-29 03:28:24 +0000] [415] [INFO] Booting worker with pid: 415 +[2026-03-29 03:28:25 +0000] [416] [INFO] Booting worker with pid: 416 +[2026-03-29 03:28:25 +0000] [407] [INFO] Started server process [407] +[2026-03-29 03:28:25 +0000] [407] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [407] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [418] [INFO] Booting worker with pid: 418 +[2026-03-29 03:28:25 +0000] [408] [INFO] Started server process [408] +[2026-03-29 03:28:25 +0000] [408] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [408] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [421] [INFO] Booting worker with pid: 421 +[2026-03-29 03:28:25 +0000] [413] [INFO] Started server process [413] +[2026-03-29 03:28:25 +0000] [413] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [413] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [411] [INFO] Started server process [411] +[2026-03-29 03:28:25 +0000] [411] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [411] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [423] [INFO] Booting worker with pid: 423 +[2026-03-29 03:28:25 +0000] [425] [INFO] Booting worker with pid: 425 +[2026-03-29 03:28:25 +0000] [426] [INFO] Booting worker with pid: 426 +[2026-03-29 03:28:25 +0000] [428] [INFO] Booting worker with pid: 428 +[2026-03-29 03:28:25 +0000] [405] [INFO] Started server process [405] +[2026-03-29 03:28:25 +0000] [405] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [405] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [429] [INFO] Booting worker with pid: 429 +[2026-03-29 03:28:25 +0000] [415] [INFO] Started server process [415] +[2026-03-29 03:28:25 +0000] [415] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [415] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [430] [INFO] Booting worker with pid: 430 +[2026-03-29 03:28:25 +0000] [416] [INFO] Started server process [416] +[2026-03-29 03:28:25 +0000] [416] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [416] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [431] [INFO] Booting worker with pid: 431 +[2026-03-29 03:28:25 +0000] [435] [INFO] Booting worker with pid: 435 +[2026-03-29 03:28:25 +0000] [437] [INFO] Booting worker with pid: 437 +[2026-03-29 03:28:25 +0000] [425] [INFO] Started server process [425] +[2026-03-29 03:28:25 +0000] [425] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [425] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [418] [INFO] Started server process [418] +[2026-03-29 03:28:25 +0000] [418] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [418] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [423] [INFO] Started server process [423] +[2026-03-29 03:28:25 +0000] [423] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [423] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [421] [INFO] Started server process [421] +[2026-03-29 03:28:25 +0000] [421] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [421] [INFO] Application startup complete. +[2026-03-29 03:28:25 +0000] [439] [INFO] Booting worker with pid: 439 +[2026-03-29 03:28:25 +0000] [429] [INFO] Started server process [429] +[2026-03-29 03:28:25 +0000] [429] [INFO] Waiting for application startup. +[2026-03-29 03:28:25 +0000] [429] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [430] [INFO] Started server process [430] +[2026-03-29 03:28:26 +0000] [430] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [430] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [442] [INFO] Booting worker with pid: 442 +[2026-03-29 03:28:26 +0000] [443] [INFO] Booting worker with pid: 443 +[2026-03-29 03:28:26 +0000] [439] [INFO] Started server process [439] +[2026-03-29 03:28:26 +0000] [439] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [439] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [437] [INFO] Started server process [437] +[2026-03-29 03:28:26 +0000] [437] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [437] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [448] [INFO] Booting worker with pid: 448 +[2026-03-29 03:28:26 +0000] [426] [INFO] Started server process [426] +[2026-03-29 03:28:26 +0000] [426] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [426] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [449] [INFO] Booting worker with pid: 449 +[2026-03-29 03:28:26 +0000] [431] [INFO] Started server process [431] +[2026-03-29 03:28:26 +0000] [431] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [431] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [451] [INFO] Booting worker with pid: 451 +[2026-03-29 03:28:26 +0000] [435] [INFO] Started server process [435] +[2026-03-29 03:28:26 +0000] [435] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [435] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [428] [INFO] Started server process [428] +[2026-03-29 03:28:26 +0000] [428] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [428] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [452] [INFO] Booting worker with pid: 452 +[2026-03-29 03:28:26 +0000] [453] [INFO] Booting worker with pid: 453 +[2026-03-29 03:28:26 +0000] [456] [INFO] Booting worker with pid: 456 +[2026-03-29 03:28:26 +0000] [442] [INFO] Started server process [442] +[2026-03-29 03:28:26 +0000] [442] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [442] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [457] [INFO] Booting worker with pid: 457 +[2026-03-29 03:28:26 +0000] [460] [INFO] Booting worker with pid: 460 +[2026-03-29 03:28:26 +0000] [443] [INFO] Started server process [443] +[2026-03-29 03:28:26 +0000] [443] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [443] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [449] [INFO] Started server process [449] +[2026-03-29 03:28:26 +0000] [449] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [449] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [462] [INFO] Booting worker with pid: 462 +[2026-03-29 03:28:26 +0000] [453] [INFO] Started server process [453] +[2026-03-29 03:28:26 +0000] [453] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [453] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [448] [INFO] Started server process [448] +[2026-03-29 03:28:26 +0000] [448] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [448] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [464] [INFO] Booting worker with pid: 464 +[2026-03-29 03:28:26 +0000] [465] [INFO] Booting worker with pid: 465 +[2026-03-29 03:28:26 +0000] [456] [INFO] Started server process [456] +[2026-03-29 03:28:26 +0000] [456] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [456] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [469] [INFO] Booting worker with pid: 469 +[2026-03-29 03:28:26 +0000] [460] [INFO] Started server process [460] +[2026-03-29 03:28:26 +0000] [460] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [460] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [451] [INFO] Started server process [451] +[2026-03-29 03:28:26 +0000] [451] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [451] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [457] [INFO] Started server process [457] +[2026-03-29 03:28:26 +0000] [457] [INFO] Waiting for application startup. +[2026-03-29 03:28:26 +0000] [457] [INFO] Application startup complete. +[2026-03-29 03:28:26 +0000] [472] [INFO] Booting worker with pid: 472 +[2026-03-29 03:28:27 +0000] [464] [INFO] Started server process [464] +[2026-03-29 03:28:27 +0000] [464] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [464] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [452] [INFO] Started server process [452] +[2026-03-29 03:28:27 +0000] [452] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [452] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [473] [INFO] Booting worker with pid: 473 +[2026-03-29 03:28:27 +0000] [474] [INFO] Booting worker with pid: 474 +[2026-03-29 03:28:27 +0000] [476] [INFO] Booting worker with pid: 476 +[2026-03-29 03:28:27 +0000] [478] [INFO] Booting worker with pid: 478 +[2026-03-29 03:28:27 +0000] [480] [INFO] Booting worker with pid: 480 +[2026-03-29 03:28:27 +0000] [465] [INFO] Started server process [465] +[2026-03-29 03:28:27 +0000] [465] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [465] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [483] [INFO] Booting worker with pid: 483 +[2026-03-29 03:28:27 +0000] [484] [INFO] Booting worker with pid: 484 +[2026-03-29 03:28:27 +0000] [476] [INFO] Started server process [476] +[2026-03-29 03:28:27 +0000] [476] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [476] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [485] [INFO] Booting worker with pid: 485 +[2026-03-29 03:28:27 +0000] [469] [INFO] Started server process [469] +[2026-03-29 03:28:27 +0000] [469] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [469] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [472] [INFO] Started server process [472] +[2026-03-29 03:28:27 +0000] [472] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [472] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [462] [INFO] Started server process [462] +[2026-03-29 03:28:27 +0000] [462] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [462] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [487] [INFO] Booting worker with pid: 487 +[2026-03-29 03:28:27 +0000] [473] [INFO] Started server process [473] +[2026-03-29 03:28:27 +0000] [473] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [473] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [491] [INFO] Booting worker with pid: 491 +[2026-03-29 03:28:27 +0000] [493] [INFO] Booting worker with pid: 493 +[2026-03-29 03:28:27 +0000] [487] [INFO] Started server process [487] +[2026-03-29 03:28:27 +0000] [487] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [480] [INFO] Started server process [480] +[2026-03-29 03:28:27 +0000] [480] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [480] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [487] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [483] [INFO] Started server process [483] +[2026-03-29 03:28:27 +0000] [483] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [483] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [495] [INFO] Booting worker with pid: 495 +[2026-03-29 03:28:27 +0000] [496] [INFO] Booting worker with pid: 496 +[2026-03-29 03:28:27 +0000] [474] [INFO] Started server process [474] +[2026-03-29 03:28:27 +0000] [474] [INFO] Waiting for application startup. +[2026-03-29 03:28:27 +0000] [474] [INFO] Application startup complete. +[2026-03-29 03:28:27 +0000] [498] [INFO] Booting worker with pid: 498 +[2026-03-29 03:28:28 +0000] [478] [INFO] Started server process [478] +[2026-03-29 03:28:28 +0000] [478] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [478] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [500] [INFO] Booting worker with pid: 500 +[2026-03-29 03:28:28 +0000] [491] [INFO] Started server process [491] +[2026-03-29 03:28:28 +0000] [491] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [491] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [501] [INFO] Booting worker with pid: 501 +[2026-03-29 03:28:28 +0000] [485] [INFO] Started server process [485] +[2026-03-29 03:28:28 +0000] [485] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [485] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [503] [INFO] Booting worker with pid: 503 +[2026-03-29 03:28:28 +0000] [504] [INFO] Booting worker with pid: 504 +[2026-03-29 03:28:28 +0000] [506] [INFO] Booting worker with pid: 506 +[2026-03-29 03:28:28 +0000] [508] [INFO] Booting worker with pid: 508 +[2026-03-29 03:28:28 +0000] [509] [INFO] Booting worker with pid: 509 +[2026-03-29 03:28:28 +0000] [493] [INFO] Started server process [493] +[2026-03-29 03:28:28 +0000] [493] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [493] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [501] [INFO] Started server process [501] +[2026-03-29 03:28:28 +0000] [501] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [501] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [500] [INFO] Started server process [500] +[2026-03-29 03:28:28 +0000] [500] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [500] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [506] [INFO] Started server process [506] +[2026-03-29 03:28:28 +0000] [506] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [506] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [504] [INFO] Started server process [504] +[2026-03-29 03:28:28 +0000] [504] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [504] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [498] [INFO] Started server process [498] +[2026-03-29 03:28:28 +0000] [498] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [498] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [508] [INFO] Started server process [508] +[2026-03-29 03:28:28 +0000] [508] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [508] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [509] [INFO] Started server process [509] +[2026-03-29 03:28:28 +0000] [509] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [509] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [484] [INFO] Started server process [484] +[2026-03-29 03:28:28 +0000] [484] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [484] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [495] [INFO] Started server process [495] +[2026-03-29 03:28:28 +0000] [495] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [495] [INFO] Application startup complete. +[2026-03-29 03:28:28 +0000] [496] [INFO] Started server process [496] +[2026-03-29 03:28:28 +0000] [496] [INFO] Waiting for application startup. +[2026-03-29 03:28:28 +0000] [496] [INFO] Application startup complete. +[2026-03-29 03:28:29 +0000] [503] [INFO] Started server process [503] +[2026-03-29 03:28:29 +0000] [503] [INFO] Waiting for application startup. +[2026-03-29 03:28:29 +0000] [503] [INFO] Application startup complete. +[2026-03-29 03:28:29 +0000] [491] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1064,16 +1064,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [313] [ERROR] Exception in ASGI application +[2026-03-29 03:28:29 +0000] [30] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1112,16 +1109,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [185] [ERROR] Exception in ASGI application +[2026-03-29 03:28:29 +0000] [30] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1160,16 +1154,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [389] [ERROR] Exception in ASGI application +[2026-03-29 03:29:04 +0000] [81] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1208,16 +1199,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [336] [ERROR] Exception in ASGI application +[2026-03-29 03:29:04 +0000] [158] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1256,16 +1244,13 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [37] [ERROR] Exception in ASGI application +[2026-03-29 03:29:04 +0000] [96] [ERROR] Exception in ASGI application Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi result = await app( # type: ignore[func-returns-value] @@ -1304,684 +1289,9 @@ Traceback (most recent call last): File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app response = await f(request) ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [392] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:13:58 +0000] [28] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [20] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [37] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [92] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [315] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [75] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [317] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [167] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:15 +0000] [220] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:32 +0000] [269] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:32 +0000] [28] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:32 +0000] [265] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream - raise ClientDisconnect() -starlette.requests.ClientDisconnect -[2026-03-26 02:14:32 +0000] [216] [ERROR] Exception in ASGI application -Traceback (most recent call last): - File "/usr/local/lib/python3.13/site-packages/uvicorn/protocols/http/httptools_impl.py", line 409, in run_asgi - result = await app( # type: ignore[func-returns-value] - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - self.scope, self.receive, self.send - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - ) - ^ - File "/usr/local/lib/python3.13/site-packages/uvicorn/middleware/proxy_headers.py", line 60, in __call__ - return await self.app(scope, receive, send) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/applications.py", line 112, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 187, in __call__ - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/errors.py", line 165, in __call__ - await self.app(scope, receive, _send) - File "/usr/local/lib/python3.13/site-packages/starlette/middleware/exceptions.py", line 62, in __call__ - await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 714, in __call__ - await self.middleware_stack(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 734, in app - await route.handle(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 288, in handle - await self.app(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 76, in app - await wrap_app_handling_exceptions(app, request)(scope, receive, send) - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app - raise exc - File "/usr/local/lib/python3.13/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app - await app(scope, receive, sender) - File "/usr/local/lib/python3.13/site-packages/starlette/routing.py", line 73, in app - response = await f(request) - ^^^^^^^^^^^^^^^^ - File "/app/app.py", line 152, in upload_endpoint - data = await request.body() - ^^^^^^^^^^^^^^^^^^^^ - File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 241, in body - async for chunk in self.stream(): - chunks.append(chunk) + File "/app/app.py", line 237, in upload_endpoint + async for chunk in request.stream(): + size += len(chunk) File "/usr/local/lib/python3.13/site-packages/starlette/requests.py", line 235, in stream raise ClientDisconnect() starlette.requests.ClientDisconnect