From 383d31f12b85e2d33d1af64910b0bfecd2f475f5 Mon Sep 17 00:00:00 2001 From: Kemal Hadimli Date: Thu, 14 Apr 2022 09:13:42 +0100 Subject: [PATCH] fix: Provider version check --- pkg/plugin/registry/hub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugin/registry/hub.go b/pkg/plugin/registry/hub.go index 23a554b2504f73..19727032bba9c3 100644 --- a/pkg/plugin/registry/hub.go +++ b/pkg/plugin/registry/hub.go @@ -161,7 +161,7 @@ func (h Hub) CheckProviderUpdate(ctx context.Context, requestedProvider *config. ctx, cancel := context.WithTimeout(ctx, versionCheckHTTPTimeout) defer cancel() - latestVersion, err := h.getLatestRelease(ctx, organization, ProviderRepoName(providerName)) + latestVersion, err := h.getLatestRelease(ctx, organization, providerName) if err != nil { return "", err }