Skip to content

Commit 25f6afd

Browse files
committedFeb 22, 2016
protocols/asyncio_server: raise asyncio line length limit. Closes #285
1 parent 8da455d commit 25f6afd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎artiq/protocols/asyncio_server.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ async def start(self, host, port):
2424
:param port: TCP port to bind to.
2525
"""
2626
self.server = await asyncio.start_server(self._handle_connection,
27-
host, port)
27+
host, port,
28+
limit=4*1024*1024)
2829

2930
async def stop(self):
3031
"""Stops the server."""

0 commit comments

Comments
 (0)