Merge pull request #610 from rajasec/checkpoint-state

Eliminating checkpoint state in container
This commit is contained in:
Mrunal Patel 2016-03-02 13:34:07 -08:00
commit b86570a4d4
1 changed files with 0 additions and 5 deletions

View File

@ -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: