From c9e9ca5671775652b2e097641713084ea367a7fa Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Thu, 25 Oct 2018 14:11:44 -0400 Subject: Properly set Running state when starting containers Signed-off-by: Matthew Heon --- libpod/container_internal.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libpod') diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 9bb45a08a..5221ac5b6 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -734,6 +734,8 @@ func (c *Container) start() error { } logrus.Debugf("Started container %s", c.ID()) + c.state.State = ContainerStateRunning + return c.save() } -- cgit v1.2.3-54-g00ecf