Skip to content

Commit 9a6354b

Browse files
committedFeb 22, 2016
protocols/pc_rpc: raise asyncio line length limit for client
1 parent 14683f2 commit 9a6354b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎artiq/protocols/pc_rpc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ async def connect_rpc(self, host, port, target_name):
191191
this method is a coroutine. See ``Client`` for a description of the
192192
parameters."""
193193
self.__reader, self.__writer = \
194-
await asyncio.open_connection(host, port)
194+
await asyncio.open_connection(host, port, limit=4*1024*1024)
195195
try:
196196
self.__writer.write(_init_string)
197197
server_identification = await self.__recv()

0 commit comments

Comments
 (0)
Please sign in to comment.