summaryrefslogtreecommitdiff
path: root/libpod/pod.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/pod.go')
-rw-r--r--libpod/pod.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/libpod/pod.go b/libpod/pod.go
index 560277578..bd02efdae 100644
--- a/libpod/pod.go
+++ b/libpod/pod.go
@@ -130,14 +130,6 @@ func (p *Pod) Start() (map[string]error, error) {
for len(ctrsToStart) > 0 {
// Loop through all containers, attempting to start them
for id, ctr := range ctrsToStart {
- // TODO remove this when we support restarting containers
- if ctr.state.State == ContainerStateStopped {
- ctrErrors[id] = errors.Wrapf(ErrNotImplemented, "starting stopped containers is not yet supported")
-
- delete(ctrsToStart, id)
- continue
- }
-
// TODO should we only do a dependencies check if we are not ContainerStateCreated?
depsOK := true
var depErr error