소스 검색

Fix bad merge

Matt Bolt 6 년 전
부모
커밋
d4ff620dec
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      costmodel/router.go

+ 1 - 2
costmodel/router.go

@@ -15,9 +15,9 @@ import (
 
 
 	"k8s.io/klog"
 	"k8s.io/klog"
 
 
-	"github.com/kubecost/cost-model/clustercache"
 	"github.com/julienschmidt/httprouter"
 	"github.com/julienschmidt/httprouter"
 	costAnalyzerCloud "github.com/kubecost/cost-model/cloud"
 	costAnalyzerCloud "github.com/kubecost/cost-model/cloud"
+	"github.com/kubecost/cost-model/clustercache"
 	"github.com/patrickmn/go-cache"
 	"github.com/patrickmn/go-cache"
 	prometheusClient "github.com/prometheus/client_golang/api"
 	prometheusClient "github.com/prometheus/client_golang/api"
 	prometheusAPI "github.com/prometheus/client_golang/api/prometheus/v1"
 	prometheusAPI "github.com/prometheus/client_golang/api/prometheus/v1"
@@ -904,7 +904,6 @@ func Initialize() {
 		NetworkInternetEgressRecorder: NetworkInternetEgressRecorder,
 		NetworkInternetEgressRecorder: NetworkInternetEgressRecorder,
 		PersistentVolumePriceRecorder: pvGv,
 		PersistentVolumePriceRecorder: pvGv,
 		Model:                         NewCostModel(k8sCache),
 		Model:                         NewCostModel(k8sCache),
-		CostDataCache:                 costDataCache,
 		OutOfClusterCache:             outOfClusterCache,
 		OutOfClusterCache:             outOfClusterCache,
 	}
 	}