From ec6da7851ea44b95d350f1b7a2f7a576ba184123 Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Tue, 27 Sep 2022 12:55:18 -0400 Subject: [PATCH] Bump HA timeout to match S6_SERVICES_GRACETIME (#3904) --- supervisor/docker/homeassistant.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/supervisor/docker/homeassistant.py b/supervisor/docker/homeassistant.py index d01e229f4..73049981e 100644 --- a/supervisor/docker/homeassistant.py +++ b/supervisor/docker/homeassistant.py @@ -42,9 +42,9 @@ class DockerHomeAssistant(DockerInterface): @property def timeout(self) -> int: """Return timeout for Docker actions.""" - # Synchronized homeassistant/core.py:async_stop - # to avoid killing Home Assistant Core. - return 120 + 60 + 30 + 10 + # Synchronized homeassistant's S6_SERVICES_GRACETIME + # to avoid killing Home Assistant Core + return 220 + 20 @property def ip_address(self) -> IPv4Address: