diff --git a/main.go b/main.go index f212d70..ad4376e 100644 --- a/main.go +++ b/main.go @@ -498,6 +498,10 @@ 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 {