From 9c2659883165a29fc0edb49f17bf610f7a8bbdac Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Wed, 31 Dec 2025 13:25:10 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E9=98=BF=E9=87=8C=E4=BA=91=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E6=8F=90=E7=A4=BA=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../plugins/plugin-aliyun/dns-provider/aliyun-dns-provider.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/ui/certd-server/src/plugins/plugin-aliyun/dns-provider/aliyun-dns-provider.ts b/packages/ui/certd-server/src/plugins/plugin-aliyun/dns-provider/aliyun-dns-provider.ts index cef9d1baa..63b4bcfe6 100644 --- a/packages/ui/certd-server/src/plugins/plugin-aliyun/dns-provider/aliyun-dns-provider.ts +++ b/packages/ui/certd-server/src/plugins/plugin-aliyun/dns-provider/aliyun-dns-provider.ts @@ -114,6 +114,9 @@ export class AliyunDnsProvider extends AbstractDnsProvider { await this.ctx.utils.sleep(5000) return this.createRecord(options) } + if (e.code === 'SignatureDoesNotMatch') { + this.logger.error('阿里云账号的AccessKeyId或AccessKeySecret错误,请检查AccessKey是否被删除、过期、或者选择了错误的授权记录'); + } this.logger.info('添加域名解析出错', e); this.resolveError(e, options); }