Skip to content

Commit

Permalink
ignore next schedule error instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Son Roy Almerol committed Nov 14, 2024
1 parent 4e76348 commit 0479230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/store/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func (store *Store) GetAllJobs() ([]Job, error) {

nextSchedule, err := getNextSchedule(&job)
if err != nil {
return nil, fmt.Errorf("GetAllJobs: error getting next schedule -> %w", err)
nextSchedule = nil
}

if nextSchedule != nil {
Expand Down

0 comments on commit 0479230

Please sign in to comment.