diff options
Diffstat (limited to 'libpod/pod.go')
-rw-r--r-- | libpod/pod.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/pod.go b/libpod/pod.go index f7059800a..7d9e2c81b 100644 --- a/libpod/pod.go +++ b/libpod/pod.go @@ -165,6 +165,11 @@ func startNode(node *containerNode, setError bool, ctrErrors map[string]error, c // Going to start the container, mark us as visited ctrsVisited[node.id] = true + // TODO: Maybe have a checkDependenciesRunningLocked here? + // Graph traversal should ensure our deps have been started, but some + // might have stopped since? + // Potentially will hurt our perf, though + // Start the container (only if it is not running) ctrErrored := false if node.container.state.State != ContainerStateRunning { |