From e5c499c22e16b391730ca1b06e027d43c311ee09 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 14 Sep 2020 22:10:30 +0200 Subject: [PATCH] Increase TIMEOUT_ACK to 2s (#40080) --- 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 2b5dca6474f..470e43b5b44 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 = 1 +TIMEOUT_ACK = 2 PLATFORMS = [ "alarm_control_panel",