mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:32:13 +02:00
don't lose domain ordering
This commit is contained in:
@@ -245,8 +245,9 @@ class Client(object):
|
|||||||
domains,
|
domains,
|
||||||
self.config.allow_subset_of_names)
|
self.config.allow_subset_of_names)
|
||||||
|
|
||||||
domains = [a.body.identifier.value.encode('ascii')
|
auth_domains = set(a.body.identifier.value.encode('ascii')
|
||||||
for a in authzr]
|
for a in authzr)
|
||||||
|
domains = [d for d in domains if d in auth_domains]
|
||||||
|
|
||||||
# Create CSR from names
|
# Create CSR from names
|
||||||
key = crypto_util.init_save_key(
|
key = crypto_util.init_save_key(
|
||||||
|
|||||||
Reference in New Issue
Block a user