Files
Kilo-Org_kilocode/packages/opencode
Alex Alecu 779121f9e7 fix: resolve /exit hang caused by undelivered worker RPC response
The shutdown RPC call to the worker thread never resolved because the worker's event loop drained after cleanup, preventing the postMessage result from being delivered back to the main thread. This left process.exit() unreachable and the process hanging indefinitely.

Replace the blocking await with a fire-and-forget shutdown RPC that waits for the worker's close event (up to 5s timeout) before calling worker.terminate().
2026-02-25 12:51:59 +02:00
..
2026-02-14 04:19:48 +00:00
2026-02-23 18:15:49 +01:00
2026-01-24 12:27:13 -05:00
2026-02-14 04:19:02 +00:00
2026-01-26 14:59:23 +01:00
2026-02-23 11:04:07 -03:00
2026-02-23 18:15:49 +01:00
2026-02-11 16:14:28 +00:00

js

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.2.12. Bun is a fast all-in-one JavaScript runtime.