Skip to content

Commit

Permalink
added error handling (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Dec 2, 2020
1 parent 2a7c300 commit 3fc2891
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions clab/clab.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ func (c *cLab) ExecPostDeployTasks(ctx context.Context, node *Node) error {
return err
}
err = c.DockerClient.ContainerStart(ctx, node.ContainerID, types.ContainerStartOptions{})
if err != nil {
return err
}
}
return nil
}

0 comments on commit 3fc2891

Please sign in to comment.