fix(search): allow indexed check (close #3103)

This commit is contained in:
Noah Hsu
2023-01-19 17:00:49 +08:00
parent 98872a8fdb
commit 9b99e8ab70
2 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,8 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
objCount uint64 = 0
fi model.Obj
)
log.Infof("build index for: %+v", indexPaths)
log.Infof("ignore paths: %+v", ignorePaths)
Running.Store(true)
Quit = make(chan struct{}, 1)
indexMQ := mq.NewInMemoryMQ[ObjWithParent]()