Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #442 from surajssd/multi-container-error-msg
Browse files Browse the repository at this point in the history
update the fixContainers error message
  • Loading branch information
kadel committed Nov 13, 2017
2 parents 16d1c7f + 9b732e3 commit 32ca9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/spec/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func fixContainers(containers []Container, appName string) ([]Container, error)

for i, c := range containers {
if c.Name == "" {
return nil, fmt.Errorf("please specify name for app.ingresses[%d]", i)
return nil, fmt.Errorf("please specify name for app.containers[%d]", i)
}
}
return containers, nil
Expand Down

0 comments on commit 32ca9bd

Please sign in to comment.