浏览代码

fix:微信这块,随机休眠,至少大于10s

Roc 2 周之前
父节点
当前提交
1891b2971c
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      services/wechat_platform.go

+ 7 - 1
services/wechat_platform.go

@@ -226,8 +226,14 @@ func BeachAddWechatArticle(item *rag.WechatPlatform, num int) {
 		// 把刚搜索的文章加入到指标库
 		AddWechatArticle(item, articleMenu.Link, articleDetail, &articleMenu)
 
-		time.Sleep(10 * time.Second)
+		//time.Sleep(10 * time.Second)
 
+		// 随机休眠,至少大于10s
+		sleepTimeInt := utils.GetRandInt(10, 20)
+		if sleepTimeInt < 10 {
+			sleepTimeInt = 10
+		}
+		time.Sleep(time.Duration(sleepTimeInt) * time.Second)
 	}
 	return
 }