Update cert_api.py

This commit is contained in:
Mr Chen 2024-08-30 15:10:36 +08:00
parent 7c23c16280
commit cfc3dc73c4
1 changed files with 2 additions and 2 deletions

View File

@ -1447,8 +1447,8 @@ fullchain.pem 粘贴到证书输入框
# 是否到了最大重试次数
if 'retry_count' in self.__config['orders'][i]:
if self.__config['orders'][i]['retry_count'] >= 5:
msg = '|-本次跳过域名:{},因连续5次续签失败,不再续签此证书(可尝试手动续签此证书,成功后错误次数将被重置)'.format(
if self.__config['orders'][i]['retry_count'] >= 10:
msg = '|-本次跳过域名:{},因连续10次续签失败,不再续签此证书(可尝试手动续签此证书,成功后错误次数将被重置)'.format(
self.__config['orders'][i]['domains'])
writeLog(msg)
continue