this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fully ignore enqueued backfill repo events

authored by

whyrusleeping and committed by
whyrusleeping
eb8d2e59 5af80c81

+4 -1
+4 -1
backfill/gormstore.go
··· 178 178 defer j.lk.Unlock() 179 179 180 180 switch j.state { 181 - case StateComplete, StateEnqueued: 181 + case StateComplete: 182 182 return false, nil 183 + case StateEnqueued: 184 + // if the repo is enqueue, but not actively being backfilled, just ignore events for it for now 185 + return true, nil 183 186 case StateInProgress: 184 187 // keep going and buffer the op 185 188 default: