Increase discovery flow init concurrency limit to 20 (#115230)

This commit is contained in:
J. Nick Koston 2024-04-08 11:05:40 -10:00 committed by GitHub
parent 44f8dbf86b
commit 95958ac0ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"