From fbcf0eb94cf339d64a513d9d2bad200da8ff75fd Mon Sep 17 00:00:00 2001 From: Alec <30310787+alec-pinson@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:25:44 +0100 Subject: [PATCH] Increase connect and configuration time for rfxtrx (#153834) Increase the allowed time for connection and configuration. Some devices take a long time to respond to configuration changes and this time is counted for both network and configuration of the device. --- homeassistant/components/rfxtrx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/rfxtrx/__init__.py b/homeassistant/components/rfxtrx/__init__.py index d100999527f..8692ff40366 100644 --- a/homeassistant/components/rfxtrx/__init__.py +++ b/homeassistant/components/rfxtrx/__init__.py @@ -48,7 +48,7 @@ from .const import ( DEFAULT_OFF_DELAY = 2.0 -CONNECT_TIMEOUT = 30.0 +CONNECT_TIMEOUT = 60.0 _LOGGER = logging.getLogger(__name__)