From febe16d70084516856b2f1b16227e85c12f488da Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 24 Nov 2016 14:56:33 -0800 Subject: [PATCH] Set executor pool size to 10 (#4571) --- homeassistant/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/core.py b/homeassistant/core.py index de798434956..42ab117eadc 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -56,7 +56,7 @@ SERVICE_CALL_LIMIT = 10 # seconds ENTITY_ID_PATTERN = re.compile(r"^(\w+)\.(\w+)$") # Size of a executor pool -EXECUTOR_POOL_SIZE = 15 +EXECUTOR_POOL_SIZE = 10 # Time for cleanup internal pending tasks TIME_INTERVAL_TASKS_CLEANUP = 10