mirror of
https://github.com/netcccyun/dnsmgr.git
synced 2026-03-05 04:57:28 +08:00
修复AWS CloudFront部署函数中错误的入参
This commit is contained in:
parent
3c6944a701
commit
a13fb38e66
@ -45,7 +45,7 @@ class aws implements DeployInterface
|
||||
if (!$certInfo) throw new Exception('证书解析失败');
|
||||
|
||||
$cert_id = isset($info['cert_id']) ? $info['cert_id'] : null;
|
||||
$cert_id = $this->get_cert_id($fullchain, $privatekey, $cert_id, $config['cert_name']);
|
||||
$cert_id = $this->get_cert_id($fullchain, $privatekey, $cert_id);
|
||||
usleep(500000);
|
||||
|
||||
$client = new AWSClient($this->AccessKeyId, $this->SecretAccessKey, 'cloudfront.amazonaws.com', 'cloudfront', '2020-05-31', 'us-east-1', $this->proxy);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user