Browse Source

#3589 LoadRepoConfig after ORM is initialized

tags/v1.21.12.1
Unknwon 9 years ago
parent
commit
6da55159a2
No known key found for this signature in database GPG Key ID: FB9F411CDD69BEC1
5 changed files with 6 additions and 9 deletions
  1. +1
    -1
      gogs.go
  2. +0
    -4
      models/repo.go
  3. +1
    -0
      models/repo_mirror.go
  4. +3
    -3
      routers/install.go
  5. +1
    -1
      templates/.VERSION

+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.9.98.0901"
const APP_VER = "0.9.98.0902"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())


+ 0
- 4
models/repo.go View File

@@ -613,10 +613,6 @@ func MigrateRepository(u *User, opts MigrateRepoOptions) (*Repository, error) {
return nil, err
}

// Clone to temprory path and do the init commit.
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
os.MkdirAll(tmpDir, os.ModePerm)

repoPath := RepoPath(u.Name, opts.Name)
wikiPath := WikiPath(u.Name, opts.Name)



+ 1
- 0
models/repo_mirror.go View File

@@ -38,6 +38,7 @@ type Mirror struct {
}

func (m *Mirror) BeforeInsert() {
m.UpdatedUnix = time.Now().Unix()
m.NextUpdateUnix = m.NextUpdate.Unix()
}



+ 3
- 3
routers/install.go View File

@@ -65,14 +65,14 @@ func GlobalInit() {
if setting.InstallLock {
highlight.NewContext()
markdown.BuildSanitizer()

models.LoadRepoConfig()
models.NewRepoContext()
if err := models.NewEngine(); err != nil {
log.Fatal(4, "Fail to initialize ORM engine: %v", err)
}
models.HasEngine = true

models.LoadRepoConfig()
models.NewRepoContext()

// Booting long running goroutines.
cron.NewContext()
models.InitSyncMirrors()


+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.9.98.0901
0.9.98.0902

Loading…
Cancel
Save