mirror of
https://github.com/nubenetes/awesome-kubernetes.git
synced 2026-07-12 09:51:00 +00:00
fix: disable SSL verification for RSS parsing to support custom domains like netflixtechblog
This commit is contained in:
@@ -24,7 +24,7 @@ class RSSDataExtractor:
|
||||
for url in feeds:
|
||||
self.log_audit("Discovery", None, f"Parsing feed: {url}")
|
||||
try:
|
||||
async with httpx.AsyncClient(follow_redirects=True, timeout=30.0) as client:
|
||||
async with httpx.AsyncClient(follow_redirects=True, timeout=30.0, verify=False) as client:
|
||||
headers = {'User-Agent': ua.random}
|
||||
response = await client.get(url, headers=headers)
|
||||
response.raise_for_status()
|
||||
|
||||
Reference in New Issue
Block a user