Przeglądaj źródła

Merge branch 'bolt/remote-config' of github.com:kubecost/cost-model into bolt/remote-config

Matt Bolt 4 lat temu
rodzic
commit
cc8c42d653
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      pkg/cloud/providerconfig.go

+ 1 - 1
pkg/cloud/providerconfig.go

@@ -61,7 +61,7 @@ func (pc *ProviderConfig) onConfigFileUpdated(changeType config.ChangeType, data
 		customPricing := new(CustomPricing)
 		err := json.Unmarshal(data, customPricing)
 		if err != nil {
-			klog.Infof("Could not decode Custom Pricing file at path %s", pc.configFile.Path())
+			klog.Infof("Could not decode Custom Pricing file at path %s. Using default.", pc.configFile.Path())
 			customPricing = DefaultPricing()
 		}