Преглед на файлове

Fixed invalid Get calls from previous mis-merge

Signed-off-by: Matt Ray <github@mattray.dev>
Matt Ray преди 2 години
родител
ревизия
fb14f7e467
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      pkg/env/costmodelenv.go

+ 2 - 2
pkg/env/costmodelenv.go

@@ -618,7 +618,7 @@ func GetDataRetentionDailyResolutionDays() int64 {
 }
 
 func IsKubernetesEnabled() bool {
-	return Get(KubernetesEnabledEnvVar, "") != ""
+	return env.Get(KubernetesEnabledEnvVar, "") != ""
 }
 
 func IsCloudCostEnabled() bool {
@@ -626,7 +626,7 @@ func IsCloudCostEnabled() bool {
 }
 
 func GetCloudCostConfigPath() string {
-	return Get(CloudCostConfigPath, "cloud-integration.json")
+	return env.Get(CloudCostConfigPath, "cloud-integration.json")
 }
 
 func GetCloudCostMonthToDateInterval() int {