فهرست منبع

support nil pvWithCost

AjayTripathy 7 سال پیش
والد
کامیت
c2179ca69c
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      costmodel/costmodel.go

+ 3 - 0
costmodel/costmodel.go

@@ -569,6 +569,9 @@ func GetPVCost(pv *costAnalyzerCloud.PV, kpv *v1.PersistentVolume, cloud costAna
 	if err != nil {
 		return err
 	}
+	if pvWithCost == nil {
+		return nil
+	}
 	pv.Cost = pvWithCost.Cost
 	return err
 }