1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Clean up the constants in 'libcontainerd' that are no longer in use

Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn>

update

Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn>
This commit is contained in:
Yanqiang Miao 2016-10-28 12:55:08 +08:00
parent 0aaef963a8
commit 1ad989559f
2 changed files with 7 additions and 10 deletions

View file

@ -32,7 +32,6 @@ import (
const (
maxConnectionRetryCount = 3
connectionRetryDelay = 3 * time.Second
containerdHealthCheckTimeout = 3 * time.Second
containerdShutdownTimeout = 15 * time.Second
containerdBinary = "docker-containerd"

View file

@ -14,10 +14,8 @@ const (
StateResume = "resume"
StateExit = "exit"
StateRestore = "restore"
StateStartProcess = "start-process"
StateExitProcess = "exit-process"
StateOOM = "oom" // fake state
stateLive = "live"
)
// CommonStateInfo contains the state info common to all platforms.