mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #1395 from LK4D4/fix_svc_race
network: fix race in read access to map
This commit is contained in:
commit
7a7112b794
1 changed files with 1 additions and 1 deletions
|
@ -1110,8 +1110,8 @@ func (n *network) getSvcRecords(ep *endpoint) []etchosts.Record {
|
||||||
epName := ep.Name()
|
epName := ep.Name()
|
||||||
|
|
||||||
n.ctrlr.Lock()
|
n.ctrlr.Lock()
|
||||||
|
defer n.ctrlr.Unlock()
|
||||||
sr, _ := n.ctrlr.svcRecords[n.id]
|
sr, _ := n.ctrlr.svcRecords[n.id]
|
||||||
n.ctrlr.Unlock()
|
|
||||||
|
|
||||||
for h, ip := range sr.svcMap {
|
for h, ip := range sr.svcMap {
|
||||||
if strings.Split(h, ".")[0] == epName {
|
if strings.Split(h, ".")[0] == epName {
|
||||||
|
|
Loading…
Reference in a new issue