Fix CSR generation

This commit is contained in:
Niklas Keller
2018-01-11 17:15:04 +01:00
parent 256aa76011
commit 2b4a200263

View File

@@ -110,7 +110,7 @@ class Issue implements Command {
$this->climate->br();
$this->climate->whisper(' Requesting certificate ...');
$csr = (new OpensslCsrGenerator)->generateCsr($key, $domains);
$csr = yield (new OpensslCsrGenerator)->generateCsr($key, $domains);
$location = yield $acme->requestCertificate($csr);
$certificates = yield $acme->pollForCertificate($location);