fix(cron): crash when errors are encountered during a backup (#403)

This commit is contained in:
Boris Bera
2024-10-17 07:49:45 -04:00
committed by GitHub
parent 6424c64304
commit 41e4e4a5f3
2 changed files with 16 additions and 2 deletions

View File

@@ -1,12 +1,22 @@
package internal
import (
"errors"
"fmt"
)
func RunCron() error {
c := GetConfig()
var errs []error
for name, l := range c.Locations {
l.name = name
if err := l.RunCron(); err != nil {
return err
errs = append(errs, err)
}
}
if len(errs) > 0 {
return fmt.Errorf("Encountered errors during cron process:\n%w", errors.Join(errs...))
}
return nil
}