File tree Expand file tree Collapse file tree
packages/server/src/utils/volume-backups Expand file tree Collapse file tree Original file line number Diff line number Diff 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} ;
You can’t perform that action at this time.
0 commit comments