From b3308ecbe0a5f4e4ada3c473188ffa8fcbfdbe3f Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 19 Aug 2020 16:46:39 +0200 Subject: [PATCH] Fix timeout and reflect s6-overlay (#1947) --- supervisor/docker/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/docker/interface.py b/supervisor/docker/interface.py index 26c9a233b..b9791aab3 100644 --- a/supervisor/docker/interface.py +++ b/supervisor/docker/interface.py @@ -29,7 +29,7 @@ class DockerInterface(CoreSysAttributes): @property def timeout(self) -> int: """Return timeout for Docker actions.""" - return 30 + return 10 @property def name(self) -> Optional[str]: