This commit is contained in:
Jan Eitzinger 2024-03-19 16:16:02 +01:00
parent 81fe492655
commit 0005469101

View File

@ -30,13 +30,11 @@ var (
) )
type JobRepository struct { type JobRepository struct {
DB *sqlx.DB DB *sqlx.DB
driver string stmtCache *sq.StmtCache
cache *lrucache.Cache
stmtCache *sq.StmtCache
cache *lrucache.Cache
archiveChannel chan *schema.Job archiveChannel chan *schema.Job
driver string
archivePending sync.WaitGroup archivePending sync.WaitGroup
} }