Merge pull request #39516 from thaJeztah/lock_portindex

DockerSwarmSuite lock portIndex to work around race
This commit is contained in:
Yong Tang 2019-07-13 15:11:27 -07:00 committed by GitHub
commit b3a48b78af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -304,8 +304,8 @@ func init() {
type DockerSwarmSuite struct {
server *httptest.Server
ds *DockerSuite
daemonsLock sync.Mutex // protect access to daemons and portIndex
daemons []*daemon.Daemon
daemonsLock sync.Mutex // protect access to daemons
portIndex int
}
@ -336,8 +336,8 @@ func (s *DockerSwarmSuite) AddDaemon(c *check.C, joinSwarm, manager bool) *daemo
d.StartNode(c)
}
s.portIndex++
s.daemonsLock.Lock()
s.portIndex++
s.daemons = append(s.daemons, d)
s.daemonsLock.Unlock()
@ -354,9 +354,8 @@ func (s *DockerSwarmSuite) TearDownTest(c *check.C) {
}
}
s.daemons = nil
s.daemonsLock.Unlock()
s.portIndex = 0
s.daemonsLock.Unlock()
s.ds.TearDownTest(c)
}