From a13c4d4c1739e30bf739f70f0967126679ce8dd8 Mon Sep 17 00:00:00 2001 From: springstan <46536646+springstan@users.noreply.github.com> Date: Wed, 16 Sep 2020 08:14:11 +0200 Subject: [PATCH] Increase TIMEOUT_ACK to 10s (#40117) --- homeassistant/components/mqtt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/mqtt/__init__.py b/homeassistant/components/mqtt/__init__.py index 470e43b5b44..d9bf1bbadfa 100644 --- a/homeassistant/components/mqtt/__init__.py +++ b/homeassistant/components/mqtt/__init__.py @@ -134,7 +134,7 @@ CONNECTION_FAILED = "connection_failed" CONNECTION_FAILED_RECOVERABLE = "connection_failed_recoverable" DISCOVERY_COOLDOWN = 2 -TIMEOUT_ACK = 2 +TIMEOUT_ACK = 10 PLATFORMS = [ "alarm_control_panel",