From 3fcbc8268f635a904a172e00fb9d48b6774ffc7e Mon Sep 17 00:00:00 2001 From: sascha Date: Wed, 5 Aug 2026 14:00:12 +0200 Subject: [PATCH] fix: Borg-Status fuer grosse Emby-Repositories robust machen --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 5168a5f..5c26a67 100644 --- a/app.py +++ b/app.py @@ -527,8 +527,8 @@ async def _collect_backup_status(concurrency: int = 10) -> dict: rc, out, err = await asyncio.to_thread( _ssh, f'{host["user"]}@{host["ip"]}', - "sudo -n borgmatic list --last 1 --json 2>/dev/null", - 12, + "sudo -n borgmatic list --last 1 --json", + 60, ) return host["name"], _backup_item(rc, out, err)