Skip to content

Commit f961dc6

Browse files
[autofix.ci] apply automated fixes
1 parent 4be25da commit f961dc6

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

  • packages/server/src/utils/volume-backups

packages/server/src/utils/volume-backups/utils.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,10 @@ export const runVolumeBackup = async (volumeBackupId: string) => {
141141
organizationId,
142142
});
143143
} catch (notificationError) {
144-
console.error("Failed to send volume backup success notification", notificationError);
144+
console.error(
145+
"Failed to send volume backup success notification",
146+
notificationError,
147+
);
145148
}
146149
} catch (error) {
147150
const { VOLUME_BACKUPS_PATH } = paths(!!serverId);
@@ -175,7 +178,10 @@ export const runVolumeBackup = async (volumeBackupId: string) => {
175178
errorMessage: error instanceof Error ? error.message : String(error),
176179
});
177180
} catch (notificationError) {
178-
console.error("Failed to send volume backup error notification", notificationError);
181+
console.error(
182+
"Failed to send volume backup error notification",
183+
notificationError,
184+
);
179185
}
180186
}
181187
};

0 commit comments

Comments
 (0)