From 46b7b1ffb39c9da00fade46931e5eedd3f2d6d6e Mon Sep 17 00:00:00 2001 From: Pablo Ovelleiro Corral Date: Tue, 8 Feb 2022 15:20:50 +0100 Subject: [PATCH] Increase timeout for InfluxDB v2 connections (#63885) * Update influxdb timeout * Update homeassistant/components/influxdb/const.py Co-authored-by: Mike Degatano Co-authored-by: Mike Degatano --- homeassistant/components/influxdb/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/influxdb/const.py b/homeassistant/components/influxdb/const.py index 77f76745ba4..f3b0b66df54 100644 --- a/homeassistant/components/influxdb/const.py +++ b/homeassistant/components/influxdb/const.py @@ -72,7 +72,7 @@ INFLUX_CONF_ORG = "org" EVENT_NEW_STATE = "new_state" DOMAIN = "influxdb" API_VERSION_2 = "2" -TIMEOUT = 5 +TIMEOUT = 10 # seconds RETRY_DELAY = 20 QUEUE_BACKLOG_SECONDS = 30 RETRY_INTERVAL = 60 # seconds