this repo has no description
0
fork

Configure Feed

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

Actually pass state to newly enqueued jobs (#574)

authored by

Jaz and committed by
GitHub
f3f54289 f7eb4000

+1 -1
+1 -1
backfill/gormstore.go
··· 121 121 func (s *Gormstore) createJobForRepo(repo, state string) error { 122 122 dbj := &GormDBJob{ 123 123 Repo: repo, 124 - State: StateEnqueued, 124 + State: state, 125 125 } 126 126 if err := s.db.Create(dbj).Error; err != nil { 127 127 if err == gorm.ErrDuplicatedKey {