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

Merge pull request #3803 from yinggaozhen/fix-statistics

GetMapData change to read lock
This commit is contained in:
Ming Deng 2020-06-23 21:08:32 +08:00 committed by GitHub
commit 43a3623f51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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{}