- Gitea version (or commit ref): 1.11.0-rc1
- Git version: 2.24.1
- Operating system: Debian testing
- Database (use
[x]):
- Can you reproduce the bug at https://try.gitea.io:
Description
I enabled the indexer. It has been running for couple days since then. I am able to search and get some results but some results return no results by the Code search page meanwhile I can get 10s on results for with grep
For the term "tool_set" in the Code search page I get No source code matching your search term found.
Grepping the same code base (eve after deleting the comment lines)
find -type f -name "*.py" -exec grep -i 'tool_set' {} \; |sed '/#/d' |wc -l 44
ini
[indexer]
REPO_INDEXER_ENABLED = true
ISSUE_INDEXER_PATH: indexers/issues.bleve
REPO_INDEXER_PATH: indexers/repos.bleve
UPDATE_BUFFER_LEN: 20
MAX_FILE_SIZE: 1048576
[x]):Description
I enabled the indexer. It has been running for couple days since then. I am able to search and get some results but some results return no results by the Code search page meanwhile I can get 10s on results for with grep
For the term "tool_set" in the Code search page I get
No source code matching your search term found.Grepping the same code base (eve after deleting the comment lines)
find -type f -name "*.py" -exec grep -i 'tool_set' {} \; |sed '/#/d' |wc -l 44ini