diff --git a/artiq/protocols/broadcast.py b/artiq/protocols/broadcast.py index a517ebb86..354a1b560 100644 --- a/artiq/protocols/broadcast.py +++ b/artiq/protocols/broadcast.py @@ -18,7 +18,7 @@ class Receiver: async def connect(self, host, port): self.reader, self.writer = \ - await asyncio.open_connection(host, port, limit=4*1024*1024) + await asyncio.open_connection(host, port, limit=100*1024*1024) try: self.writer.write(_init_string) self.writer.write((self.name + "\n").encode()) diff --git a/artiq/protocols/pc_rpc.py b/artiq/protocols/pc_rpc.py index bf3f1c12b..d99ca06fb 100644 --- a/artiq/protocols/pc_rpc.py +++ b/artiq/protocols/pc_rpc.py @@ -201,7 +201,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, limit=4*1024*1024) + await asyncio.open_connection(host, port, limit=100*1024*1024) try: self.__writer.write(_init_string) server_identification = await self.__recv() diff --git a/artiq/protocols/sync_struct.py b/artiq/protocols/sync_struct.py index b6dfdac92..35b72ff75 100644 --- a/artiq/protocols/sync_struct.py +++ b/artiq/protocols/sync_struct.py @@ -67,7 +67,7 @@ class Subscriber: async def connect(self, host, port, before_receive_cb=None): self.reader, self.writer = \ - await asyncio.open_connection(host, port, limit=4*1024*1024) + await asyncio.open_connection(host, port, limit=100*1024*1024) try: if before_receive_cb is not None: before_receive_cb()