Increment warning count on volume mount failure

This commit is contained in:
Jakub Trávník 2025-12-29 20:41:01 +01:00 committed by GitHub
parent 5a4f4641b4
commit a71009ff78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -407,6 +407,7 @@ async function importBackupSchedules(backupSchedules: unknown[]): Promise<Import
} catch (e) {
const err = e instanceof Error ? e : new Error(String(e));
logger.warn(`Could not mount volume ${volume.name}: ${err.message}`);
result.warnings++;
continue;
}
}