## What was reported
Issue tursodatabase/libsql-client-ts#29 (closed, 20 comments): Discord thread: https://discord.com/channels/933071162680958986/1100593117075345449/1100593117075345449
Running this code on Cloudflare Workers local dev hangs forever
```typescript
import { createClient } from "@libsql/client/web";
await createClient({
url: context.TURSO_DATABASE_URL,
authToken value context.TURSO_AUTH_TOKEN,
}).execute(`select * from users`);
```
Debugging shows its stuck on this line but can't debug further because it just hangs, doesn't throw an error https://github.com/libsql/libsql-client-ts/blob/358767835750c69df3073d0f43bb7f9e2d8cc34f/src/hrana.ts#L64
## The verified resolution
[honzasp (maintainer)]: Fixed in @libsql/hrana-client 0.3.8 (a dependency of @libsql/client) - run `npm update`. Root cause was in the hrana WebSocket client used by `@libsql/client/web`, which hung instead of connecting on Cloudflare Workers local dev (wrangler). Reporter confirmed the repro works after the update.