Error listings

All error pages

Paginated listing built for long-term scale and search engine crawl efficiency.

LiteLLM LiteLLM Updated May 17, 2026

LiteLLM IP Usage-Based Dynamic Priority Queuing (Fair Queuing)

Implement fair queuing in LiteLLM proxy to prevent single client from monopolizing model capacity and causing starvation for other tenants Includes evidence for LiteLLM troubleshooting demand.

No fair queuing — traffic burst from one client starves other clients' requests
Deployment Vercel Updated May 17, 2026

Vercel deployment build failed (out of memory)

Fix Vercel deployment build failure due to out of memory during build step Includes evidence for Vercel troubleshooting demand.

build exited with code 1 (OOM during Vite/vanilla-extract build bundle)
Anthropic API Anthropic API Updated May 17, 2026

Anthropic SDK Mid-Stream Transport Error Leaks as Bare httpx.Exception Instead of APIConnectionError

Developer using Anthropic streaming API loses connection mid-stream (TransportError) and can't catch it with standard except anthropic.APIConnectionError blocks — must know to also catch httpx.TransportError Includes evidence for Anthropic API troubleshooting demand.

Mid-stream httpx.TransportError leaks through as bare httpx exceptions because SSE body iteration has no try/except — customers standard retry ladder misses mid-stream drops
AI Coding Tools Claude Code Updated May 17, 2026

Claude Code /login Shows Success But Reverts to Not Logged In — Auth Persistence Bug

User ran /login in Claude Code on Windows, sees success message but tool remains unauthenticated and rejects all commands afterward Includes evidence for Claude Code troubleshooting demand.

/login shows "Login successful" but immediately reverts to "Not logged in". Any subsequent command fails with "Not logged in".
Docker Docker Updated May 17, 2026

Docker 29.5.0 Rootless Daemon Socket Disappears — Cannot Connect to Docker API

User upgraded to Docker 29.5.0 and rootless mode stopped working — docker socket file disappears, can't run any docker commands Includes evidence for Docker troubleshooting demand.

failed to connect to the docker API at unix:///run/user/1000/docker.sock; check if the path is correct and if the daemon is running: dial unix /run/user/1000/docker.sock: connect: no such file or directory
AI Coding Tools LangChain Updated May 17, 2026

LangChain with_structured_output() Silently Drops Previously Bound Tools

Developer calls langgraph.with_structured_output() expecting it to preserve pre-bound tools, but they are silently dropped — functional regression breaking LLM function calling workflows Includes evidence for LangChain troubleshooting demand.

[langchain-openai] with_structured_output() silently drops previously bound tools and lacks support for OpenAI native tool bindings
LiteLLM LiteLLM Updated May 17, 2026

LiteLLM Proxy GET /v1/models Ignores user.models Restriction — Unauthorized Model List Exposure

Developer using LiteLLM proxy finds that restricted users can see full model list via GET /v1/models endpoint despite access group restrictions, creating a security/authorization inconsistency Includes evidence for LiteLLM troubleshooting demand.

GET /v1/models ignores user.models restriction — shows all proxy models regardless of user access groups
OpenAI API OpenAI API Updated May 17, 2026

OpenAI Python SDK Background Mode Returns No Typed Exception When Response Fails

Developer using client.responses.create(background=True) cannot handle failure cases programmatically because the SDK returns 200 with failed payload instead of raising a typed exception Includes evidence for OpenAI API troubleshooting demand.

Background responses failures lack a stable code/name that maps to an exception class — HTTP poll returns 200 OK with status=failed but no typed exception is raised
AI Coding Tools Claude Code Updated May 17, 2026

Claude Code MCP server auth returns HTTP 431 error on Linux

Fix Claude Code MCP server authentication returning HTTP 431 error on Linux platform Includes evidence for Claude Code troubleshooting demand.

HTTP ERROR 431 — MCP server authentication failure (browser restart!)
Docker Docker Updated May 17, 2026

Docker rootless daemon not connecting after update to version 29.5.0

Fix Docker rootless mode broken after upgrading to 29.5.0 — docker.sock missing Includes evidence for Docker troubleshooting demand.

failed to connect to the docker API at unix:///run/user/1000/docker.sock: dial unix /run/user/1000/docker.sock: connect: no such file or directory
OpenAI API OpenAI API Updated May 17, 2026

OpenAI Batch API returns 404 for GPT-5 mini/nano models

Fix OpenAI Batch API 404 error when using GPT-5 mini or nano models with chat completions endpoint Includes evidence for OpenAI API troubleshooting demand.

The model gpt-5-mini-2025-08-07-batch does not exist or you do not have access (HTTP 404 on /v1/chat/completions batch endpoint)
Anthropic API Anthropic API Updated May 17, 2026

Anthropic Bedrock Server-Side Errors — Mapping Non-200 Stream Events

Handle Anthropic Bedrock server-side errors (5xx/4xx responses) during streaming properly; understand transient error retry behavior and HTTP status exception handling Includes evidence for Anthropic API troubleshooting demand.

non-200 stream events raise ValueError instead of APIStatusError