(ctx context.Context, dockerCli command.Cli, serviceIDs []string, quiet bool)
| 302 | } |
| 303 | |
| 304 | func waitOnServices(ctx context.Context, dockerCli command.Cli, serviceIDs []string, quiet bool) error { |
| 305 | var errs []error |
| 306 | for _, serviceID := range serviceIDs { |
| 307 | if err := service.WaitOnService(ctx, dockerCli, serviceID, quiet); err != nil { |
| 308 | errs = append(errs, fmt.Errorf("%s: %w", serviceID, err)) |
| 309 | } |
| 310 | } |
| 311 | return errors.Join(errs...) |
| 312 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…