Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,10 @@ def get_client_ssl_credentials(
"""

# 1. Attempt to retrieve X.509 Workload cert and key.
cert, key = _get_workload_cert_and_key(certificate_config_path)
try:
cert, key = _get_workload_cert_and_key(certificate_config_path)
except exceptions.ClientCertError:
cert, key = None, None
if cert and key:
return True, cert, key, None

Expand Down
Loading
Loading