From 60036a291f7c0d4a487a84f6f9e352e37274141a Mon Sep 17 00:00:00 2001 From: James Nesbitt Date: Sun, 21 Jul 2024 15:31:32 +0300 Subject: [PATCH] PRODENG-2686 Fix MSR3 for new healthcheck interface - 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 --- pkg/product/mke/phase/install_msr3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/product/mke/phase/install_msr3.go b/pkg/product/mke/phase/install_msr3.go index bb4537ac..2a14193b 100644 --- a/pkg/product/mke/phase/install_msr3.go +++ b/pkg/product/mke/phase/install_msr3.go @@ -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) }