Merge pull request #1008 from crosbymichael/kill-error

Fix error on double Kill calls
This commit is contained in:
Kenfe-Mickaël Laventure
2017-06-23 13:48:49 -07:00
committed by GitHub
8 changed files with 112 additions and 18 deletions

View File

@@ -3,7 +3,8 @@ package plugin
import "errors"
var (
ErrContainerExists = errors.New("container with id already exists")
ErrContainerNotExist = errors.New("container does not exist")
ErrRuntimeNotExist = errors.New("runtime does not exist")
ErrContainerExists = errors.New("runtime: container with id already exists")
ErrContainerNotExist = errors.New("runtime: container does not exist")
ErrRuntimeNotExist = errors.New("runtime: runtime does not exist")
ErrProcessExited = errors.New("runtime: process already exited")
)