fix(backups): prevent error propagation in backup cleanup

Remove unnecessary error throwing in backup cleanup to allow partial success and logging
This commit is contained in:
Mauricio Siu
2025-03-10 01:48:28 -06:00
parent a15d9234be
commit acc8ce80ad

View File

@@ -212,6 +212,5 @@ export const keepLatestNBackups = async (
} }
} catch (error) { } catch (error) {
console.error(error); console.error(error);
throw error;
} }
}; };