Skip to content

Commit

Permalink
return err if dependency.Start() fails in service.Start()
Browse files Browse the repository at this point in the history
* tests for this will be added within #371
  • Loading branch information
ilgooz committed Aug 21, 2018
1 parent 08f072a commit 29f0017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (service *Service) Start() (serviceIDs []string, err error) {
if err != nil {
service.Stop()
}
return serviceIDs, nil
return serviceIDs, err
}

// Start starts a dependency container.
Expand Down

0 comments on commit 29f0017

Please sign in to comment.