Selaa lähdekoodia

Lock container when set state to restarting

After exec driver run, container lock is lost, so we should lock
container when changing its state to `restarting`

Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
Zhang Wei 9 vuotta sitten
vanhempi
commit
155714c596
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      container/monitor.go

+ 1 - 1
container/monitor.go

@@ -218,7 +218,7 @@ func (m *containerMonitor) start() error {
 		m.resetMonitor(err == nil && exitStatus.ExitCode == 0)
 
 		if m.shouldRestart(exitStatus.ExitCode) {
-			m.container.SetRestarting(&exitStatus)
+			m.container.SetRestartingLocking(&exitStatus)
 			m.logEvent("die")
 			m.resetContainer(true)