search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: catch all turso query errors (including ReadTimeout), bump timeout to 60s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+2 -2
+2 -2
scripts/build-atlas
··· 120 120 } 121 121 122 122 try: 123 - resp = httpx.post(url, headers=headers, json=body, timeout=30) 123 + resp = httpx.post(url, headers=headers, json=body, timeout=60) 124 124 resp.raise_for_status() 125 - except (httpx.ConnectError, httpx.HTTPStatusError) as e: 125 + except Exception as e: 126 126 log(f" warning: turso query failed: {e}") 127 127 return {} 128 128 results = resp.json().get("results", [])