From 91520838fc72f4004d65844b8e57df85473808a1 Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Tue, 9 Jul 2013 10:48:33 -0700 Subject: [PATCH] Make sure container is not marked as ghost when it starts --- state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/state.go b/state.go index 117659bf5b..6480b9b428 100644 --- a/state.go +++ b/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()