Переглянути джерело

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
 }