Skip to content

Commit 28a6697

Browse files
check healthchecks when summarizing deployments
1 parent e018627 commit 28a6697

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/cmd/cli/command/compose.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,8 @@ func makeComposeUpCmd() *cobra.Command {
401401
}
402402

403403
// Print the current service states of the deployment
404-
err = cli.PrintServiceStatesAndEndpoints(deploy.Services)
405-
if err != nil {
406-
return err
404+
if err := cli.PrintServices(cmd.Context(), project.Name, provider, false); err != nil {
405+
term.Warn(err)
407406
}
408407

409408
term.Info("Done.")

0 commit comments

Comments
 (0)