Commit 24000c60 authored by 刘喆's avatar 刘喆

fix the nullpointexception

parent 16878755
......@@ -108,7 +108,7 @@ public class DimRichAsyncFunction extends RichAsyncFunction<MlPreciseExposureBea
DimPageType dimReferrerType = dimPageTypeCache.getValue(referrer_code, new DimTableCallable(referrer_code, DimTableList.DIM_PAGE_TYPE.getTableName(), dimJdbcUrl));
if (dimReferrerType != null) {
if (dimReferrerType.getName() == null) {
dimPageTypeCache.invalidate(page_code);
dimPageTypeCache.invalidate(referrer_code);
} else {
mlPreciseExposureBean.setReferrer_name(dimReferrerType.getName());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment