fix sqlite lock (#5210) (#5223)

release/v1.6
Lunny Xiao 6 years ago committed by GitHub
parent 582213a858
commit 478ba7f318
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2451,7 +2451,7 @@ func ForkRepository(doer, u *User, oldRepo *Repository, name, desc string) (_ *R
repoPath := RepoPath(u.Name, repo.Name)
_, stderr, err := process.GetManager().ExecTimeout(10*time.Minute,
fmt.Sprintf("ForkRepository(git clone): %s/%s", u.Name, repo.Name),
"git", "clone", "--bare", oldRepo.RepoPath(), repoPath)
"git", "clone", "--bare", oldRepo.repoPath(sess), repoPath)
if err != nil {
return nil, fmt.Errorf("git clone: %v", stderr)
}

Loading…
Cancel
Save