We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33ed33d commit 7eeb288Copy full SHA for 7eeb288
matter_server/server/helpers/paa_certificates.py
@@ -106,7 +106,7 @@ async def fetch_dcl_certificates(
106
)
107
LAST_CERT_IDS.add(paa["subjectKeyId"])
108
fetch_count += 1
109
- except ClientError as err:
+ except (ClientError, TimeoutError) as err:
110
LOGGER.warning(
111
"Fetching latest certificates failed: error %s", err, exc_info=err
112
@@ -142,7 +142,7 @@ async def fetch_git_certificates() -> int:
142
await write_paa_root_cert(certificate, cert)
143
LAST_CERT_IDS.add(cert)
144
145
146
147
148
0 commit comments