## What was reported

Issue tursodatabase/libsql-client-ts#223 (closed, 6 comments): [image]
Since today morning, i have only been getting this error. Even the simplest inserts fail. However drizzle migrations are working for some reason, so the credentials are correct. Yesterday my setup was working, so i believe this error isn't on my end

## The verified resolution

[Creative-Difficulty (reporter)]: Not a Turso bug  -  bun's fetch override was the cause. Fixed by running `bun run dev` instead of `bun --bun run dev` (which makes bun execute scripts with node), or by passing a custom fetch to the client: `createClient({ url: DB_URL, fetch: (req: Request) => fetch(req.url, req) })` (bun doesn't accept raw Request objects, oven-sh/bun#11381). Drizzle migrations worked throughout, which was the clue the credentials were fine.