From 0bda2c6af56384ffb51aa3b439726ff725da8e85 Mon Sep 17 00:00:00 2001 From: Rajasekaran Date: Wed, 2 Mar 2016 22:32:27 +0530 Subject: [PATCH] Eliminating checkpoint state in container Signed-off-by: Rajasekaran --- libcontainer/container.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libcontainer/container.go b/libcontainer/container.go index 68291231..32daa976 100644 --- a/libcontainer/container.go +++ b/libcontainer/container.go @@ -27,9 +27,6 @@ const ( // The container exists, but all its processes are paused. Paused - // The container exists, but its state is saved on disk - Checkpointed - // The container does not exist. Destroyed ) @@ -44,8 +41,6 @@ func (s Status) String() string { return "pausing" case Paused: return "paused" - case Checkpointed: - return "checkpointed" case Destroyed: return "destroyed" default: