From b4cfbe46c1a6e7caaebf8c854e702e8b5cd70367 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Wed, 16 Feb 2022 18:11:02 +0100 Subject: [PATCH] Ignore corrupted databases in backup (#3452) --- supervisor/homeassistant/module.py | 1 + 1 file changed, 1 insertion(+) diff --git a/supervisor/homeassistant/module.py b/supervisor/homeassistant/module.py index 174c35a46..f65fb5f92 100644 --- a/supervisor/homeassistant/module.py +++ b/supervisor/homeassistant/module.py @@ -47,6 +47,7 @@ _LOGGER: logging.Logger = logging.getLogger(__name__) HOMEASSISTANT_BACKUP_EXCLUDE = [ "*.db-shm", + "*.corrupt.*", "__pycache__/*", "*.log", "*.log.*",