mirror: increase logging for easier debugging

This commit is contained in:
Lorenzo Bolla
2021-05-04 20:41:28 +02:00
parent 2b7bb24c92
commit 19f7b0fe8d
2 changed files with 25 additions and 7 deletions

View File

@@ -99,13 +99,13 @@ func apiDbCleanup(c *gin.Context) {
db, _ := context.Database()
if toDelete.Len() > 0 {
batch := db.StartBatch()
batch := db.CreateBatch()
toDelete.ForEach(func(ref []byte) error {
collectionFactory.PackageCollection().DeleteByKey(ref, batch)
return nil
})
err = db.FinishBatch(batch)
err = batch.Write()
if err != nil {
return fmt.Errorf("unable to write to DB: %s", err)
}