From 9a6354b959ff785b1081438eaa167f23252dcca6 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 22 Feb 2016 13:04:21 +0800 Subject: [PATCH] protocols/pc_rpc: raise asyncio line length limit for client --- artiq/protocols/pc_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/protocols/pc_rpc.py b/artiq/protocols/pc_rpc.py index 7f6140ecd..962fe10de 100644 --- a/artiq/protocols/pc_rpc.py +++ b/artiq/protocols/pc_rpc.py @@ -191,7 +191,7 @@ class AsyncioClient: 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()