1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-27 14:00:16 +00:00

Rasie limit on container shutdown for addons usecase tmpfs based mariadb for recorder taking over 2 mins for dump (#1595)

This commit is contained in:
Phill (pssc)
2020-03-23 08:15:35 +00:00
committed by GitHub
parent d2088ae5f8
commit 069bed8815

View File

@@ -261,7 +261,7 @@ SCHEMA_ADDON_CONFIG = vol.Schema(
),
vol.Optional(ATTR_IMAGE): vol.Match(RE_DOCKER_IMAGE),
vol.Optional(ATTR_TIMEOUT, default=10): vol.All(
vol.Coerce(int), vol.Range(min=10, max=120)
vol.Coerce(int), vol.Range(min=10, max=300)
),
},
extra=vol.REMOVE_EXTRA,