1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 14:00:54 +00:00

GetMapData change to read lock

This commit is contained in:
didi 2019-09-09 17:44:10 +08:00
parent 8395a26061
commit 6d47b4a2e0

View File

@ -117,8 +117,8 @@ func (m *URLMap) GetMap() map[string]interface{} {
// GetMapData return all mapdata // GetMapData return all mapdata
func (m *URLMap) GetMapData() []map[string]interface{} { func (m *URLMap) GetMapData() []map[string]interface{} {
m.lock.Lock() m.lock.RLock()
defer m.lock.Unlock() defer m.lock.RUnlock()
var resultLists []map[string]interface{} var resultLists []map[string]interface{}