We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4734970 commit 2b07cd0Copy full SHA for 2b07cd0
matter_server/server/helpers/paa_certificates.py
@@ -160,7 +160,7 @@ async def fetch_git_certificates(
160
async with ClientSession(raise_for_status=True) as http_session:
161
# Fetch directory contents and filter out extension
162
api_url = f"https://api.github.com/repos/{OWNER}/{REPO}/contents/{PATH}"
163
- async with http_session.get(api_url, timeout=20) as response:
+ async with http_session.get(api_url) as response:
164
contents = await response.json()
165
git_certs = {item["name"].split(".")[0] for item in contents}
166
# Fetch certificates
0 commit comments