change array init to empty array

This commit is contained in:
Christoph Kluge 2024-11-22 13:39:59 +01:00
parent 69f8a34aac
commit baa7367ebe

View File

@ -55,7 +55,7 @@ func RegisterFootprintWorker() {
continue
}
pendingStatements := make([]sq.UpdateBuilder, len(jobs))
pendingStatements := []sq.UpdateBuilder{}
for _, job := range jobs {
log.Debugf("Try job %d", job.JobID)