Skip to content

Commit 7eeb288

Browse files
authored
Catch TimeoutError while retrieving certificates (#594)
1 parent 33ed33d commit 7eeb288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

matter_server/server/helpers/paa_certificates.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ async def fetch_dcl_certificates(
106106
)
107107
LAST_CERT_IDS.add(paa["subjectKeyId"])
108108
fetch_count += 1
109-
except ClientError as err:
109+
except (ClientError, TimeoutError) as err:
110110
LOGGER.warning(
111111
"Fetching latest certificates failed: error %s", err, exc_info=err
112112
)
@@ -142,7 +142,7 @@ async def fetch_git_certificates() -> int:
142142
await write_paa_root_cert(certificate, cert)
143143
LAST_CERT_IDS.add(cert)
144144
fetch_count += 1
145-
except ClientError as err:
145+
except (ClientError, TimeoutError) as err:
146146
LOGGER.warning(
147147
"Fetching latest certificates failed: error %s", err, exc_info=err
148148
)

0 commit comments

Comments
 (0)