From a93873a0992131198c1bcbf0f620ef37d3e7fe50 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Thu, 2 Jun 2016 13:28:59 -0700 Subject: [PATCH] Add 'status' to state.go Forgot to do this in previous PR. Signed-off-by: Doug Davis --- specs-go/state.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/specs-go/state.go b/specs-go/state.go index d3ad79d9..ec4cd4e8 100644 --- a/specs-go/state.go +++ b/specs-go/state.go @@ -6,6 +6,8 @@ type State struct { Version string `json:"version"` // ID is the container ID ID string `json:"id"` + // Status is the runtime state of the container. + Status string `json:"status"` // Pid is the process id for the container's main process. Pid int `json:"pid"` // BundlePath is the path to the container's bundle directory.