From 95958ac0efbfcb8153ab6292eab714f7e1a66a09 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 8 Apr 2024 11:05:40 -1000 Subject: [PATCH] Increase discovery flow init concurrency limit to 20 (#115230) --- homeassistant/helpers/discovery_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/helpers/discovery_flow.py b/homeassistant/helpers/discovery_flow.py index b6633a3f718..314777733c3 100644 --- a/homeassistant/helpers/discovery_flow.py +++ b/homeassistant/helpers/discovery_flow.py @@ -11,7 +11,7 @@ from homeassistant.core import CoreState, Event, HomeAssistant, callback from homeassistant.loader import bind_hass from homeassistant.util.async_ import gather_with_limited_concurrency -FLOW_INIT_LIMIT = 2 +FLOW_INIT_LIMIT = 20 DISCOVERY_FLOW_DISPATCHER = "discovery_flow_dispatcher"