mirror of
https://github.com/go-gitea/gitea
synced 2024-11-21 21:31:51 +01:00
fix install submit crash caused by xorm log (#1119)
This commit is contained in:
parent
d76d67de23
commit
7b64b2ddab
1 changed files with 1 additions and 2 deletions
|
@ -239,9 +239,8 @@ func NewTestEngine(x *xorm.Engine) (err error) {
|
||||||
return fmt.Errorf("Connect to database: %v", err)
|
return fmt.Errorf("Connect to database: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
setting.NewXORMLogService(false)
|
|
||||||
|
|
||||||
x.SetMapper(core.GonicMapper{})
|
x.SetMapper(core.GonicMapper{})
|
||||||
|
x.SetLogger(log.XORMLogger)
|
||||||
return x.StoreEngine("InnoDB").Sync2(tables...)
|
return x.StoreEngine("InnoDB").Sync2(tables...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue