Skip to content

Commit 01dfa0e

Browse files
committed
[python] FastPySGI: update to v0.7
1 parent 00946aa commit 01dfa0e

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

frameworks/fastpysgi-asgi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11-slim
1+
FROM python:3.13-slim
22
RUN apt-get update \
33
&& apt-get install -y --no-install-recommends git build-essential \
44
&& rm -rf /var/lib/apt/lists/*

frameworks/fastpysgi-asgi/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,5 +305,5 @@ async def app(scope, receive, send):
305305
fastpysgi.server.read_buffer_size = 256*1024
306306
fastpysgi.server.max_content_length = 31_000_000
307307
fastpysgi.server.backlog = 16*1024
308-
fastpysgi.server.loop_timeout = 1
308+
fastpysgi.server.loop_timeout = 1000
309309
fastpysgi.run(app, workers = WRK_COUNT, loglevel = 0)

frameworks/fastpysgi-asgi/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"enabled": true,
99
"tests": [
1010
"baseline",
11+
"pipelined",
1112
"limited-conn",
1213
"json",
1314
"json-comp",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#fastpysgi==0.6 # v0.6 is bugged
2-
git+https://github.com/remittor/fastpysgi.git@21095fe037fabb0d324814ccacfff3f4b164128d#egg=fastpysgi
1+
#fastpysgi==0.7
2+
git+https://github.com/remittor/fastpysgi.git@4b4268517a503f51d9e90ecf8a9e47bff79b491f#egg=fastpysgi
33
orjson==3.11.8
44
asyncpg==0.31.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#fastpysgi==0.6 # v0.6 is bugged
2-
git+https://github.com/remittor/fastpysgi.git@fd71875920d55c03b347ff5b19dc9d93b5983a83#egg=fastpysgi
1+
#fastpysgi==0.7
2+
git+https://github.com/remittor/fastpysgi.git@4b4268517a503f51d9e90ecf8a9e47bff79b491f#egg=fastpysgi
33
orjson==3.10.15
44
psycopg[binary]==3.2.4
55
psycopg_pool==3.2.6

0 commit comments

Comments
 (0)