fork of indigo with slightly nicer lexgen

fix Shutdown for test

authored by Brian Olson and committed by Brian Olson 4b2f8dc7 6373ce47

Changed files
+3 -1
indexer
+3 -1
indexer/indexer.go
··· 81 81 } 82 82 83 83 func (ix *Indexer) Shutdown() { 84 - ix.Crawler.Shutdown() 84 + if ix.Crawler != nil { 85 + ix.Crawler.Shutdown() 86 + } 85 87 } 86 88 87 89 func (ix *Indexer) HandleRepoEvent(ctx context.Context, evt *repomgr.RepoEvent) error {