mirror of
https://github.com/certbot/certbot.git
synced 2026-04-14 21:50:10 -04:00
pass pem to auth_handler
This commit is contained in:
parent
73bd801f35
commit
eaf739184c
1 changed files with 2 additions and 2 deletions
|
|
@ -260,7 +260,7 @@ class Client(object):
|
|||
logger.debug("CSR: %s", csr)
|
||||
|
||||
if authzr is None:
|
||||
authzr = self.auth_handler.get_authorizations(csr)
|
||||
authzr = self.auth_handler.get_authorizations(csr.data)
|
||||
|
||||
certr = self.acme.request_issuance(
|
||||
jose.ComparableX509(
|
||||
|
|
@ -316,7 +316,7 @@ class Client(object):
|
|||
csr = crypto_util.init_save_csr(key, domains, self.config.csr_dir)
|
||||
|
||||
authzr = self.auth_handler.get_authorizations(
|
||||
csr,
|
||||
csr.data,
|
||||
self.config.allow_subset_of_names)
|
||||
|
||||
certr, chain = self.obtain_certificate_from_csr(
|
||||
|
|
|
|||
Loading…
Reference in a new issue