diff --git a/tractor/_actor.py b/tractor/_actor.py index 2c91127..49f5e2f 100644 --- a/tractor/_actor.py +++ b/tractor/_actor.py @@ -572,7 +572,7 @@ class Actor: try: send_chan, recv_chan = self._cids2qs[(actorid, cid)] except KeyError: - send_chan, recv_chan = trio.open_memory_channel(1000) + send_chan, recv_chan = trio.open_memory_channel(2*10) send_chan.cid = cid # type: ignore recv_chan.cid = cid # type: ignore self._cids2qs[(actorid, cid)] = send_chan, recv_chan