ソースを参照

Make sure container is not marked as ghost when it starts

Guillaume J. Charmes 12 年 前
コミット
91520838fc
1 ファイル変更1 行追加0 行削除
  1. 1 0
      state.go

+ 1 - 0
state.go

@@ -29,6 +29,7 @@ func (s *State) String() string {
 
 func (s *State) setRunning(pid int) {
 	s.Running = true
+	s.Ghost = false
 	s.ExitCode = 0
 	s.Pid = pid
 	s.StartedAt = time.Now()