Skip to content

Commit

Permalink
protocols/pc_rpc: raise asyncio line length limit for client
Browse files Browse the repository at this point in the history
sbourdeauducq committed Feb 22, 2016
1 parent 14683f2 commit 9a6354b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/protocols/pc_rpc.py
Original file line number Diff line number Diff line change
@@ -191,7 +191,7 @@ async def connect_rpc(self, host, port, target_name):
this method is a coroutine. See ``Client`` for a description of the
parameters."""
self.__reader, self.__writer = \
await asyncio.open_connection(host, port)
await asyncio.open_connection(host, port, limit=4*1024*1024)
try:
self.__writer.write(_init_string)
server_identification = await self.__recv()

0 comments on commit 9a6354b

Please sign in to comment.