From 34714760922ab100ab94abb42e864f97eb192ee8 Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Wed, 25 Oct 2023 12:30:59 -0700 Subject: [PATCH] Revert "Protocol.receive: bump up threads from 10 to 30" Seemed to make things worse, not better. Guess I need to implement continuation passing across task handler requests. #652 This reverts commit 66da2efc7ab9495e758a991522abbcd46d15c12c. --- protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol.py b/protocol.py index 3541995..580133f 100644 --- a/protocol.py +++ b/protocol.py @@ -38,7 +38,7 @@ SUPPORTED_TYPES = ( 'video', ) -DELIVER_THREADS = 30 +DELIVER_THREADS = 10 # activity ids that we've already handled and can now ignore. # used in Protocol.receive