Skip to content
This repository was archived by the owner on Sep 22, 2023. It is now read-only.

Commit 6823dd8

Browse files
committed
fix: Apply renamed request.Response methods
* This is a follow-up to #97
1 parent 6bd3470 commit 6823dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ai/backend/client/cli/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ async def web_handler(request):
130130
down_resp.headers['Access-Control-Allow-Origin'] = '*'
131131
await down_resp.prepare(request)
132132
while True:
133-
chunk = await up_resp.aread(8192)
133+
chunk = await up_resp.read(8192)
134134
if not chunk:
135135
break
136136
await down_resp.write(chunk)

0 commit comments

Comments
 (0)