From 14ca920d1a50f1217735e3824780d602e467253a Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Mon, 27 Oct 2025 14:16:27 +0100 Subject: [PATCH] chore: change providers url in the log --- internal/config/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/provider.go b/internal/config/provider.go index c1327e81bc3923a90e349783c2b1d4a52d1eb926..f6838993abb09eb8c4a450d6065493c70cd5920a 100644 --- a/internal/config/provider.go +++ b/internal/config/provider.go @@ -162,7 +162,7 @@ func loadProviders(autoUpdateDisabled bool, client ProviderClient, path string) providers, err := catwalkGetAndSave() if err != nil { - catwalkUrl := fmt.Sprintf("%s/providers", cmp.Or(os.Getenv("CATWALK_URL"), defaultCatwalkURL)) + catwalkUrl := fmt.Sprintf("%s/v2/providers", cmp.Or(os.Getenv("CATWALK_URL"), defaultCatwalkURL)) return nil, fmt.Errorf("Crush was unable to fetch an updated list of providers from %s. Consider setting CRUSH_DISABLE_PROVIDER_AUTO_UPDATE=1 to use the embedded providers bundled at the time of this Crush release. You can also update providers manually. For more info see crush update-providers --help. %w", catwalkUrl, err) //nolint:staticcheck } return providers, nil