From 8557714f848edf00008485e7cb0ce99298b91512 Mon Sep 17 00:00:00 2001 From: zerospiel Date: Thu, 17 Oct 2024 14:37:20 +0200 Subject: [PATCH] Fix wrong providers names in telemetry --- api/v1alpha1/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/v1alpha1/common.go b/api/v1alpha1/common.go index 5ee4e32e0..c4f326b45 100644 --- a/api/v1alpha1/common.go +++ b/api/v1alpha1/common.go @@ -150,11 +150,11 @@ func (c ProvidersTupled) BootstrapProvidersNames() []string { } func (c ProvidersTupled) ControlPlaneProvidersNames() []string { - return c.names(bootstrapProvidersType) + return c.names(controlPlaneProvidersType) } func (c ProvidersTupled) InfrastructureProvidersNames() []string { - return c.names(bootstrapProvidersType) + return c.names(infrastructureProvidersType) } func (c ProvidersTupled) names(typ providersType) []string {