summaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2019-11-13 13:54:04 +0000
committerGitHub <noreply@github.com>2019-11-13 13:54:04 +0000
commit3497efac4ad74e766da6a6eaaca8dddec409040a (patch)
tree72450c516d434d193c18fdf05cc86c8cb5f63fd1 /models/repo.go
parent43fc99a7ed67152ff95af7c5ae3a7d7b131d567e (diff)
downloadgitea-3497efac4ad74e766da6a6eaaca8dddec409040a.tar.gz
gitea-3497efac4ad74e766da6a6eaaca8dddec409040a.zip
Add Close() method to gogitRepository (#8901) (#8956)
Backport #8901 In investigating #7947 it has become clear that the storage component of go-git repositories needs closing. This PR adds this Close function and adds the Close functions as necessary. In TransferOwnership the ctx.Repo.GitRepo is closed if it is open to help prevent the risk of multiple open files. Fixes #7947
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index d8a462c37b..8875c96376 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -998,6 +998,7 @@ func MigrateRepositoryGitData(doer, u *User, repo *Repository, opts api.MigrateR
if err != nil {
return repo, fmt.Errorf("OpenRepository: %v", err)
}
+ defer gitRepo.Close()
repo.IsEmpty, err = gitRepo.IsEmpty()
if err != nil {