Skip to content

Commit

Permalink
remove timeout of 60 seconds (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
aryan-rajoria committed Apr 5, 2023
1 parent 0f41606 commit cbc4711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eva/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async def handle_client(
):
try:
while True:
data = await asyncio.wait_for(client_reader.readline(), timeout=60.0)
data = await asyncio.wait_for(client_reader.readline(), timeout=None)
if data == b"":
break

Expand Down

0 comments on commit cbc4711

Please sign in to comment.