mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-17 04:31:43 +00:00
refactor: remove Ctx field from git.Repository (#38500)
This commit is contained in:
@@ -37,7 +37,7 @@ func (db *DBIndexer) Index(id int64) error {
|
||||
return err
|
||||
}
|
||||
|
||||
gitRepo, err := gitrepo.OpenRepository(ctx, repo)
|
||||
gitRepo, err := gitrepo.OpenRepository(repo)
|
||||
if err != nil {
|
||||
if err.Error() == "no such file or directory" {
|
||||
return nil
|
||||
@@ -47,7 +47,7 @@ func (db *DBIndexer) Index(id int64) error {
|
||||
defer gitRepo.Close()
|
||||
|
||||
// Get latest commit for default branch
|
||||
commitID, err := gitRepo.GetBranchCommitID(repo.DefaultBranch)
|
||||
commitID, err := gitRepo.GetBranchCommitID(ctx, repo.DefaultBranch)
|
||||
if err != nil {
|
||||
if git.IsErrBranchNotExist(err) || git.IsErrNotExist(err) || setting.IsInTesting {
|
||||
log.Debug("Unable to get commit ID for default branch %s in %s ... skipping this repository", repo.DefaultBranch, repo.FullName())
|
||||
|
||||
Reference in New Issue
Block a user