Issues: Gracefulise the issues indexer

Remove the old now unused specific queues
This commit is contained in:
Andrew Thornton
2019-11-15 19:16:40 +00:00
parent 9ad9070555
commit d6b540475f
8 changed files with 166 additions and 406 deletions

View File

@ -266,3 +266,8 @@ func (b *BleveIndexer) Search(keyword string, repoIDs []int64, limit, start int)
}
return &ret, nil
}
// Close the Index
func (b *BleveIndexer) Close() error {
return b.indexer.Close()
}