1
0
mirror of https://github.com/ClusterCockpit/cc-backend synced 2025-04-17 01:15:54 +02:00

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

@ -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)