Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Apr 11, 2024
1 parent b562586 commit 94330f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/controller/dal/dal.go
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ func (d *DAL) StartCronJobs(ctx context.Context, jobs []CronJob) (attemptedJobs
return nil, translatePGError(err)
}

attemptedJobs = make([]AttemptedCronJob, len(rows))
attemptedJobs = []AttemptedCronJob{}
for _, row := range rows {
job := AttemptedCronJob{
CronJob: CronJob{
Expand Down

0 comments on commit 94330f3

Please sign in to comment.