1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #2795 from pnasrat/docker-testmultipleattachrestart-race

Lock state before we modify.
This commit is contained in:
Victor Vieux 2013-11-21 11:28:02 -08:00
commit eaeb969138

View file

@ -1300,7 +1300,9 @@ func (container *Container) monitor() {
}
// Report status back
container.State.Lock()
container.State.setStopped(exitCode)
container.State.Unlock()
// Release the lock
close(container.waitLock)