1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-05 10:07:22 +00:00

Improve retrying index issues (#27554)

Fix #27540
This commit is contained in:
Jason Song
2023-10-16 02:56:57 +08:00
committed by GitHub
parent cddf245c12
commit 1be49fdda6
5 changed files with 52 additions and 40 deletions

View File

@ -219,7 +219,7 @@ func registerRebuildIssueIndexer() {
RunAtStart: false,
Schedule: "@annually",
}, func(ctx context.Context, _ *user_model.User, config Config) error {
return issue_indexer.PopulateIssueIndexer(ctx, false)
return issue_indexer.PopulateIssueIndexer(ctx)
})
}