Skip to content

Commit

Permalink
Fix wrong providers names in telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
zerospiel authored and Kshatrix committed Oct 17, 2024
1 parent 31cc845 commit 8557714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/v1alpha1/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 8557714

Please sign in to comment.