mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
tls alt_names fix
This commit is contained in:
parent
d435dbc85e
commit
d522d01786
1 changed files with 1 additions and 1 deletions
|
@ -1656,7 +1656,7 @@ def cert_info(cert, digest='sha256'):
|
|||
'with {2}'.format(ret['subject'], name, '/'.join(valid_entries)))
|
||||
else:
|
||||
valid_names.add(name)
|
||||
ret['subject_alt_names'] = valid_names
|
||||
ret['subject_alt_names'] = list(valid_names)
|
||||
|
||||
if hasattr(cert, 'get_signature_algorithm'):
|
||||
try:
|
||||
|
|
Loading…
Add table
Reference in a new issue