Skip to content

Commit 2b07cd0

Browse files
authored
Drop custom timeout on PAA get request (#857)
1 parent 4734970 commit 2b07cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matter_server/server/helpers/paa_certificates.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ async def fetch_git_certificates(
160160
async with ClientSession(raise_for_status=True) as http_session:
161161
# Fetch directory contents and filter out extension
162162
api_url = f"https://api.github.com/repos/{OWNER}/{REPO}/contents/{PATH}"
163-
async with http_session.get(api_url, timeout=20) as response:
163+
async with http_session.get(api_url) as response:
164164
contents = await response.json()
165165
git_certs = {item["name"].split(".")[0] for item in contents}
166166
# Fetch certificates

0 commit comments

Comments
 (0)