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

Merge pull request #2309 from mengskysama/patch-1

statistics lock
This commit is contained in:
astaxie 2016-12-06 15:03:10 +08:00 committed by GitHub
commit 81328b72fa

View File

@ -117,7 +117,9 @@ 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()
var resultLists []map[string]interface{}
for k, v := range m.urlmap {