...
|
...
|
@@ -50,7 +50,7 @@ public class UnionShareOrderConsumer implements YhConsumer { |
|
|
dates.add(DateUtil.getDateStrBySecond(bo.getOrderTime(),"yyyyMM"));
|
|
|
uids.put(bo.getPromoteUid(), dates);
|
|
|
} catch (Exception e) {
|
|
|
logger.warn("UnionShareOrderConsumer,handleMessage fail! bo is {}, e {}",l,e.getMessage());
|
|
|
logger.warn("UnionShareOrderConsumer,handleMessage fail! bo is {}, e is {}",l,e);
|
|
|
}
|
|
|
});
|
|
|
logger.info("UnionShareOrderConsumer,begin to updateMonthData,uids is {},o is {}",uids, o);
|
...
|
...
|
@@ -60,7 +60,7 @@ public class UnionShareOrderConsumer implements YhConsumer { |
|
|
try {
|
|
|
unionShareService.updateMonthData(u,dates);
|
|
|
} catch (Exception e) {
|
|
|
logger.warn("UnionShareOrderConsumer,updateMonthData error,uid is {},dates is {},e is {}",u, dates,e.getMessage());
|
|
|
logger.warn("UnionShareOrderConsumer,updateMonthData error,uid is {},dates is {},e is {}",u, dates,e);
|
|
|
}
|
|
|
});
|
|
|
logger.info("UnionShareOrderConsumer,updateMonthData end,uids is {},o is {}",uids, o);
|
...
|
...
|
@@ -68,7 +68,7 @@ public class UnionShareOrderConsumer implements YhConsumer { |
|
|
int date = Integer.valueOf(DateUtil.getToday("yyyyMMdd"));
|
|
|
redisHashCache.delete(ShareOrdersKeyEnum.RANK_LIST.getPreKey(),date);
|
|
|
} catch (Exception e) {
|
|
|
logger.warn("UnionShareOrderConsumer,handleMessage fail! obj is {}, e {}",o,e.getMessage());
|
|
|
logger.warn("UnionShareOrderConsumer,handleMessage fail! obj is {}, e is {}",o,e);
|
|
|
}
|
|
|
}
|
|
|
} |
...
|
...
|
|