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