Plugins: Make grafana-com API URL usage consistent (#86920)

Plugins: Fix grafana-com API URL usage
This commit is contained in:
Hugo Kiyodi Oshiro
2024-04-26 16:47:38 +02:00
committed by GitHub
parent 85c23eed38
commit 7783b16e47
8 changed files with 13 additions and 13 deletions

View File

@ -22,7 +22,7 @@ type Manager struct {
}
func ProvideService(cfg *config.PluginManagementCfg) (*Manager, error) {
baseURL, err := url.JoinPath(cfg.GrafanaComURL, "/api/plugins")
baseURL, err := url.JoinPath(cfg.GrafanaComAPIURL, "/plugins")
if err != nil {
return nil, err
}