From f46458340cdc54e197fc553fe73adc3dc84e2e50 Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Mon, 1 Jun 2026 17:00:05 +0200 Subject: [PATCH] fix: disable SSL verification for RSS parsing to support custom domains like netflixtechblog --- src/ingestion_rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ingestion_rss.py b/src/ingestion_rss.py index 9fa6412d..a7b57f20 100644 --- a/src/ingestion_rss.py +++ b/src/ingestion_rss.py @@ -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()