mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:40:54 +00:00
GetMapData change to read lock
This commit is contained in:
parent
8395a26061
commit
6d47b4a2e0
@ -117,8 +117,8 @@ func (m *URLMap) GetMap() map[string]interface{} {
|
||||
|
||||
// GetMapData return all mapdata
|
||||
func (m *URLMap) GetMapData() []map[string]interface{} {
|
||||
m.lock.Lock()
|
||||
defer m.lock.Unlock()
|
||||
m.lock.RLock()
|
||||
defer m.lock.RUnlock()
|
||||
|
||||
var resultLists []map[string]interface{}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user