added delayed status to better differentiate between queued (skipped) and queued

This commit is contained in:
2022-08-14 14:47:20 +02:00
parent 76152a3410
commit 041e7762f7
6 changed files with 12 additions and 15 deletions

View File

@@ -498,10 +498,6 @@ func (b *BuildManager) syncWorker(ctx context.Context) error {
}
for _, pkg := range queue {
if pkg.DbPackage.SkipReason != "" {
continue
}
if pkg.Priority() > cutOff && cutOff >= conf.Build.SlowQueueThreshold {
slowQueue = append(slowQueue, pkg)
} else {