Skip to content

Commit

Permalink
HH-237442 increase chunk queue size
Browse files Browse the repository at this point in the history
  • Loading branch information
712u3 committed Nov 11, 2024
1 parent 2d78c9f commit 440dcf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontik/tornado_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
class FrontikTornadoServerRequest(httputil.HTTPServerRequest):
def __init__(self, *args, **kwargs) -> None: # type: ignore
super().__init__(*args, **kwargs)
self.body_chunks: asyncio.Queue = asyncio.Queue(maxsize=100)
self.body_chunks: asyncio.Queue = asyncio.Queue(maxsize=100000)
self.request_id = None
self.finished = False

0 comments on commit 440dcf5

Please sign in to comment.