mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-23 14:55:19 +02:00
refactor: remove Ctx field from git.Repository (#38500)
This commit is contained in:
@@ -42,7 +42,7 @@ func PerformSearch(ctx context.Context, page int, repoID int64, gitRepo *git.Rep
|
||||
// TODO: if no branch exists, it reports: exit status 128, fatal: this operation must be run in a work tree.
|
||||
return nil, 0, fmt.Errorf("git.GrepSearch: %w", err)
|
||||
}
|
||||
commitID, err := gitRepo.GetRefCommitID(ref.String())
|
||||
commitID, err := gitRepo.GetRefCommitID(ctx, ref.String())
|
||||
if err != nil {
|
||||
return nil, 0, fmt.Errorf("gitRepo.GetRefCommitID: %w", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user