惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
博客园_首页
T
Tailwind CSS Blog
The Cloudflare Blog
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
P
Proofpoint News Feed
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
D
Docker
Microsoft Azure Blog
Microsoft Azure Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
5 FastAPI Mistakes That Waste Hours (And How to Fix Them)
Paper Scratc · 2026-05-17 · via DEV Community

I've shipped a handful of FastAPI apps this year. Every single one had me debugging the same stupid mistakes. Here are the five that cost me the most time, and the exact fixes.

1. TypeError: unhashable type: 'dict' After Upgrading Starlette

You upgrade Starlette to 1.0 and suddenly every page throws TypeError: unhashable type: 'dict'. The traceback points at Jinja2. You think it's a template problem.

It's not. Starlette 1.0 changed the TemplateResponse signature. The old 3-arg dict style is broken:

# OLD — breaks on Starlette 1.0+
return templates.TemplateResponse("page.html", {"request": request, "data": x})

Enter fullscreen mode Exit fullscreen mode

# NEW — use this
return tpl.TemplateResponse(request, "page.html", {"data": x})

Enter fullscreen mode Exit fullscreen mode

The old signature passes the context dict as the name parameter. Jinja2 tries to use it as a cache key. Boom.

Fix: tpl.TemplateResponse(request, template_name, context_dict). Three args, specific order. That's it.

2. Your API Data Works Locally, Breaks in Production

You fetch data from a third-party API, cache it in a JSON file, serve it in your template. Works great for 10 minutes. Then the cache expires, the external API hiccups, and your page crashes.

The mistake: except: pass.

# THIS IS HOW YOU BREAK PRODUCTION
try:
    data = await fetch(url)
except:
    pass  # silently returns None, page crashes

Enter fullscreen mode Exit fullscreen mode

Fix: Always fall back to stale cache. Always log the error. Never return None when you have stale data.

async def fetch(cache_path, url, ttl=600):
    data = cached_fetch(cache_path, ttl)
    if data and not data.get('_error'):
        return data
    try:
        async with aiohttp.ClientSession() as s:
            async with s.get(url, timeout=aiohttp.ClientTimeout(total=20)) as r:
                if r.status == 200:
                    data = await r.json()
                    with open(cache_path, 'w') as f:
                        json.dump(data, f)
                    return data
    except Exception as e:
        print(f'Fetch error: {e}', file=sys.stderr)
    # Fallback: stale cache is better than no cache
    if os.path.exists(cache_path):
        try:
            with open(cache_path) as f:
                return json.load(f)
        except:
            pass
    return None

Enter fullscreen mode Exit fullscreen mode

3. Nginx Returns 502 But Your Backend Logs Show 200s

Your API endpoint takes 90 seconds to respond. Backend logs show a clean 200. Browser shows 502 Bad Gateway.

Nginx default proxy_read_timeout is 60 seconds. Your backend is fine. Nginx just kills the connection before the response arrives.

Fix: Add three lines to your nginx location block:

location /api/ {
    proxy_pass http://backend:8000;
    proxy_read_timeout 120s;
    proxy_send_timeout 120s;
    proxy_connect_timeout 10s;
}

Enter fullscreen mode Exit fullscreen mode

Also check: if you're using Docker hostnames in proxy_pass, nginx crashes on startup if it can't resolve them. Use variable-based resolution:

resolver 127.0.0.11 valid=10s;
set $upstream "http://backend:8000";
proxy_pass $upstream;

Enter fullscreen mode Exit fullscreen mode

4. Supabase Says "Tenant or User Not Found"

You're running FastAPI on the same host as Supabase (Docker). You connect to port 5432. Supabase says "Tenant or user not found."

Port 5432 goes through supavisor, which uses tenant auth. Your app isn't a Supabase tenant.

Fix: Connect directly to the DB container's IP:

DB_IP=$(docker inspect supabase-db --format '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}')

Enter fullscreen mode Exit fullscreen mode

conn = await asyncpg.connect(
    host=DB_IP, port=5432,
    user='supabase_admin', password='your-password',
    database='postgres'
)

Enter fullscreen mode Exit fullscreen mode

Bypasses supavisor entirely. Works every time.

5. {% set %} in a Jinja2 Loop Doesn't Persist

You set a variable inside a {% for %} loop. You try to use it outside the loop. It's empty.

Jinja2 scoping is not Python scoping. Variables set inside loops don't leak out.

Fix: Do the grouping in Python before it hits the template:

groups = {}
for item in items:
    key = item['category']
    groups.setdefault(key, []).append(item)

Enter fullscreen mode Exit fullscreen mode

{% for category, items in groups.items() %}
  <h2>{{ category }}</h2>
  {% for item in items %}
    <div>{{ item.name }}</div>
  {% endfor %}
{% endfor %}

Enter fullscreen mode Exit fullscreen mode


I got tired of re-learning these patterns, so I packaged them into a FastAPI Web App Builder Pack — production-tested templates, deployment configs, and debugging checklists. $29, MIT licensed, use it in whatever you want.

If you just wanted the fixes, take them. That's fine too.