|
|
@@ -1444,7 +1444,9 @@ public abstract class RankStrategyBasic implements RankStrategy {
|
|
|
try {
|
|
|
for (AdRankItem item : items) {
|
|
|
Double kFinal = CreativeKFinalDataHelper.getKFinal(item.getCreativeCode());
|
|
|
- item.getScoreMap().put(flowCtlType, kFinal);
|
|
|
+ if(kFinal != null){
|
|
|
+ item.getScoreMap().put(flowCtlType, kFinal);
|
|
|
+ }
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
log.error("calCreativeKFinalWeight weight error", e);
|