0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-01-22 19:45:09 +01:00
This commit is contained in:
Christopher Homberger 2025-11-14 17:28:47 +01:00
parent 8699c5a30d
commit 03a2c06347

View File

@ -260,9 +260,12 @@ func CreateTaskForRunner(ctx context.Context, runner *ActionRunner) (*ActionTask
for page := 0; job == nil; page++ {
var jobs []*ActionRunJob
// Load only 10 job in a batch without all fields for memory / db load reduction
if err := e.Where("task_id=? AND status=? AND updated>=?", 0, StatusWaiting, lastUpdated).Cols("id", "runs_on").And(jobCond).Asc("updated", "id").Limit(limit).Find(&jobs); err != nil {
if err := e.Where("task_id=? AND status=? AND updated>?", 0, StatusWaiting, lastUpdated).Cols("id", "runs_on").And(jobCond).Asc("updated", "id").Limit(limit).Find(&jobs); err != nil {
return nil, false, err
}
if len(jobs) == 0 {
break
}
// TODO: a more efficient way to filter labels
log.Trace("runner labels: %v", runner.AgentLabels)