Skip to content

Commit

Permalink
Only request X.509 certificates via VICI
Browse files Browse the repository at this point in the history
CRLs or OCSP responses can't be handled at the moment and cause an
assertion error.
  • Loading branch information
tobiasbrunner committed Jan 16, 2024
1 parent c30f51a commit 81c135b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strongMan/helper_apps/vici/wrapper/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_certificates(self):
:rtype: list
'''
certificates = []
for certificate in self.session.list_certs():
for certificate in self.session.list_certs({"type": "X509"}):
certificates.append(certificate)
return certificates

Expand Down

0 comments on commit 81c135b

Please sign in to comment.