Skip to content

Commit d5b5821

Browse files
committed
* Merge larger-queue patch (for now)
2 parents 927b572 + 2b3c54b commit d5b5821

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
trio-asyncio (0.7.4-4) unstable; urgency=medium
2+
3+
* Merge larger-queue patch (for now)
4+
5+
-- Matthias Urlichs <matthias@urlichs.de> Tue, 29 May 2018 13:38:02 +0200
6+
17
trio-asyncio (0.7.4-3) unstable; urgency=medium
28

39
* Don't depend on pytest-trio

trio_asyncio/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class BaseTrioEventLoop(asyncio.SelectorEventLoop):
142142

143143
def __init__(self, queue_len=None):
144144
if queue_len is None:
145-
queue_len = 1000
145+
queue_len = 10000
146146

147147
# Processing queue
148148
self._q = trio.Queue(queue_len)

0 commit comments

Comments
 (0)