1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-01 02:20:55 +00:00

fix orm datarace

This commit is contained in:
luxueyan 2019-06-14 14:43:02 +08:00
parent 1b6edafc96
commit 394a73c75f

View File

@ -335,11 +335,11 @@ func RegisterModelWithSuffix(suffix string, models ...interface{}) {
// BootStrap bootstrap models. // BootStrap bootstrap models.
// make all model parsed and can not add more models // make all model parsed and can not add more models
func BootStrap() { func BootStrap() {
modelCache.Lock()
defer modelCache.Unlock()
if modelCache.done { if modelCache.done {
return return
} }
modelCache.Lock()
defer modelCache.Unlock()
bootStrap() bootStrap()
modelCache.done = true modelCache.done = true
} }