mirror of
https://github.com/certd/certd.git
synced 2026-05-15 20:47:31 +08:00
pref: 日志中加密授权信息输出替换成星号
This commit is contained in:
@@ -68,7 +68,7 @@ export class UpyunDeployToCdn extends AbstractPlusTaskPlugin {
|
||||
|
||||
//插件执行方法
|
||||
async execute(): Promise<void> {
|
||||
const access = await this.accessService.getById<UpyunAccess>(this.accessId);
|
||||
const access = await this.getAccess<UpyunAccess>(this.accessId);
|
||||
|
||||
const upyunClient = new UpyunClient({
|
||||
access,
|
||||
@@ -101,7 +101,7 @@ export class UpyunDeployToCdn extends AbstractPlusTaskPlugin {
|
||||
if (!this.accessId) {
|
||||
throw new Error("accessId不能为空");
|
||||
}
|
||||
const access = await this.accessService.getById<UpyunAccess>(this.accessId);
|
||||
const access = await this.getAccess<UpyunAccess>(this.accessId);
|
||||
|
||||
const upyunClient = new UpyunClient({
|
||||
access,
|
||||
|
||||
Reference in New Issue
Block a user