Commit 7915ff74 by 姚冰

[chg] 添加热力重建合并接口调用

1 parent 46e26b97
...@@ -315,5 +315,13 @@ public class MallDataStatisticsConsumer { ...@@ -315,5 +315,13 @@ public class MallDataStatisticsConsumer {
} catch (Exception e) { } catch (Exception e) {
log.error("潜在顾客统计异常:{}", url, e); log.error("潜在顾客统计异常:{}", url, e);
} }
url = reidUrl + "/reid/tool/heatmapRebuild?mallIds=" + mallDataStatisticsInfo.getMallId() + "&startDate=" + date + "&endDate=" + date;
try {
String result = HttpUtil.get(url);
log.info("调用mallId:{} 热力重建聚合 执行结果:{}", mallDataStatisticsInfo.getMallId(), result);
} catch (Exception e) {
log.error("热力重建聚合异常:{}", url, e);
}
} }
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!