|
|
@@ -1528,7 +1528,8 @@ public class CoreServiceImpl implements CoreService {
|
|
|
//45028群发配额用完不再重试 48004封号账号也不再重试
|
|
|
if (pushStatusVO.getErrorMsg().contains("45028")
|
|
|
|| pushStatusVO.getErrorMsg().contains("48004")
|
|
|
- || pushStatusVO.getErrorMsg().contains("50002")) {
|
|
|
+ || pushStatusVO.getErrorMsg().contains("50002")
|
|
|
+ || pushStatusVO.getErrorMsg().contains("61003")) {
|
|
|
planAccountService.updateStatus(3, planAccountId);
|
|
|
}
|
|
|
}
|
|
|
@@ -1536,6 +1537,9 @@ public class CoreServiceImpl implements CoreService {
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(pushStatusVO.getErrorMsg())
|
|
|
&& !pushStatusVO.getErrorMsg().contains("45028")
|
|
|
+ && !pushStatusVO.getErrorMsg().contains("48004")
|
|
|
+ && !pushStatusVO.getErrorMsg().contains("50002")
|
|
|
+ && !pushStatusVO.getErrorMsg().contains("61003")
|
|
|
&& !pushStatusVO.getErrorMsg().contains("所有分组均发表失败")) {
|
|
|
log.error("push error pushId={} msg={}", pushId, pushStatusVO.getErrorMsg());
|
|
|
String message = String.format("发布失败,请查看\n" +
|