this repo has no description
0
fork

Configure Feed

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

tricksy subtle differences (#551)

authored by

Whyrusleeping and committed by
GitHub
5c640bb2 77fb5304

+1 -1
+1 -1
backfill/gormstore.go
··· 384 384 } 385 385 386 386 func (s *Gormstore) PurgeRepo(ctx context.Context, repo string) error { 387 - if err := s.db.Raw("DELETE FROM gorm_db_jobs WHERE repo = ?", repo).Error; err != nil { 387 + if err := s.db.Exec("DELETE FROM gorm_db_jobs WHERE repo = ?", repo).Error; err != nil { 388 388 return err 389 389 } 390 390