From 7b2543512c4696e9906de762ce27e49c53f438e3 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 11 May 2021 23:43:06 -0400 Subject: [PATCH] Power of 2 cuz puters --- tractor/_actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_actor.py b/tractor/_actor.py index d51a451..bfcbf98 100644 --- a/tractor/_actor.py +++ b/tractor/_actor.py @@ -479,7 +479,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