Bug: Busy-Wait Loop in waitForHello
File: src/web/client/GatewayBrowserClient.ts lines 177-185
Issue: 10ms polling loop with no AbortController. Inefficient polling wastes CPU.
Recommended Fix: Use WebSocket event-based approach or AbortController with setTimeout.
Bug: Busy-Wait Loop in waitForHello
File:
src/web/client/GatewayBrowserClient.tslines 177-185Issue: 10ms polling loop with no AbortController. Inefficient polling wastes CPU.
Recommended Fix: Use WebSocket event-based approach or AbortController with setTimeout.