mirror of
https://github.com/astaxie/beego.git
synced 2024-11-01 03:30:54 +00:00
fix orm datarace
This commit is contained in:
parent
1b6edafc96
commit
394a73c75f
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user