Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tonicmuroq committed Apr 18, 2017
1 parent 021a4f0 commit 8aa83a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster/calcium/run_and_wait.go
Expand Up @@ -32,8 +32,8 @@ func (c *calcium) RunAndWait(specs types.Specs, opts *types.DeployOptions) (chan

ids := map[string]*types.Node{}
for message := range createChan {
if message.ContainerID == "" {
log.Errorf("[RunAndWait] Can't find container id %s", err.Error())
if !message.Success || message.ContainerID == "" {
log.Errorf("[RunAndWait] Create container error, %s", message.Error)
continue
}

Expand Down

0 comments on commit 8aa83a4

Please sign in to comment.