Compare commits

..

No commits in common. "a5457af71641c286212e531a51939a288e59b46d" and "02af421799ac95e74480c9ef77d2ab3bb8c04934" have entirely different histories.

View file

@ -307,14 +307,7 @@ async def pull_sber_indices(
counters: dict[str, int] = {"upserted": 0, "skipped": 0, "errors": 0}
# #922: sberindex.ru serves an INCOMPLETE TLS chain — it sends only the leaf
# certificate and omits the Let's Encrypt intermediate (R13), so cert
# verification fails with "unable to get local issuer certificate" (verify
# code 21) even against a full system/certifi trust store. This is a
# server-side misconfiguration outside our control. The endpoint is public,
# unauthenticated, non-sensitive open data, so we skip TLS verification here
# rather than pin a Let's Encrypt intermediate that rotates (R10R14+).
async with httpx.AsyncClient(timeout=SBER_HTTP_TIMEOUT, verify=False) as client:
async with httpx.AsyncClient(timeout=SBER_HTTP_TIMEOUT) as client:
for ref_area, _city_hint in cities.items():
for dashboard in dashboards:
try: