1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Prevent deadlock in create issue (#17970)

This commit is contained in:
zeripath
2021-12-13 22:59:39 +00:00
committed by GitHub
parent 39eb82446c
commit eba07867ef
3 changed files with 11 additions and 5 deletions

View File

@@ -312,10 +312,11 @@ func (repo *Repository) MustGetUnit(tp unit.Type) *RepoUnit {
// GetUnit returns a RepoUnit object
func (repo *Repository) GetUnit(tp unit.Type) (*RepoUnit, error) {
return repo.getUnit(db.DefaultContext, tp)
return repo.GetUnitCtx(db.DefaultContext, tp)
}
func (repo *Repository) getUnit(ctx context.Context, tp unit.Type) (*RepoUnit, error) {
// GetUnitCtx returns a RepoUnit object
func (repo *Repository) GetUnitCtx(ctx context.Context, tp unit.Type) (*RepoUnit, error) {
if err := repo.LoadUnits(ctx); err != nil {
return nil, err
}