chore: teo dns 测试成功

This commit is contained in:
xiaojunnuo
2025-11-13 01:11:04 +08:00
parent d7c381e05d
commit d56567c9de
4 changed files with 28 additions and 23 deletions
+7 -2
View File
@@ -492,7 +492,7 @@ class AcmeClient {
throw new Error('Unable to verify ACME challenge, URL not found');
}
const {challenges} = createChallengeFn({logger:this.opts.logger});
const {challenges} = createChallengeFn({logger:this.logger});
const verify = challenges
if (typeof verify[challenge.type] === 'undefined') {
@@ -510,7 +510,12 @@ class AcmeClient {
};
this.log('Waiting for ACME challenge verification(等待ACME检查验证)');
return util.retry(verifyFn, this.backoffOpts);
const log = (...args)=>{
this.logger.info(...args)
}
return util.retry(verifyFn, this.backoffOpts,log);
}
/**