Skip to content

Commit

Permalink
PRODENG-2686 Fix MSR3 for new healthcheck interface
Browse files Browse the repository at this point in the history
- MKEHealthCheck interface now takes a list of hosts
- Error exists because PR was not rebased on the MSR3 changes before being merged

Signed-off-by: James Nesbitt <[email protected]>
  • Loading branch information
james-nesbitt committed Jul 22, 2024
1 parent 82c9320 commit 60036a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/product/mke/phase/install_msr3.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (p *InstallOrUpgradeMSR3) Run() error {
}
}

if err := p.Config.Spec.CheckMKEHealthRemote(h); err != nil {
if err := p.Config.Spec.CheckMKEHealthRemote([]*api.Host{h}); err != nil {
return fmt.Errorf("%s: failed to health check mke, try to set `--ucp-url` installation flag and check connectivity: %w", h, err)
}

Expand Down

0 comments on commit 60036a2

Please sign in to comment.