Signed-off-by: Ke Li <kel@splunk.com> Add missing changes Signed-off-by: Ke Li <kel@splunk.com> User errors.New to create error Signed-off-by: Ke Li <kel@splunk.com> Upstream-commit: 514adcf4580effa4820be8d5e6d2c0ea9825ceb2 Component: engine
18 lines
510 B
Go
18 lines
510 B
Go
package container
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrImageRequired returned if a task is missing the image definition.
|
|
ErrImageRequired = errors.New("dockerexec: image required")
|
|
|
|
// ErrContainerDestroyed returned when a container is prematurely destroyed
|
|
// during a wait call.
|
|
ErrContainerDestroyed = errors.New("dockerexec: container destroyed")
|
|
|
|
// ErrContainerUnhealthy returned if controller detects the health check failure
|
|
ErrContainerUnhealthy = errors.New("dockerexec: unhealthy container")
|
|
)
|