yumeng 2 周之前
父節點
當前提交
2d998c51c9

+ 1 - 1
jeecg-boot-module-system/src/main/java/cn/com/ctop/toutiao/modules/report/controller/BytedancePushDataController.java

@@ -65,7 +65,7 @@ public class BytedancePushDataController {
                 if (!Check.isNull(content)) {
                     JSONArray idArr = content.getJSONArray("promotion_ids");
                     List<Long> idList = JSONArray.parseArray(idArr.toJSONString(), Long.class);
-                    List<List<Long>> moreList = Lists.partition(idList, 100);
+                    List<List<Long>> moreList = Lists.partition(idList, 20);
                     for (List<Long> ids : moreList) {
                         projectExecutorService.submit(new Runnable() {
                             @Override