From 05f272707bb00fc17792d3f8385709d930de4de7 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Tue, 14 Jul 2026 09:35:55 +0200 Subject: [PATCH] chore(debug-controller): send timeout metadata Copilot-Session: 60ddac57-20bb-46ca-a1fc-93a59eb602e5 --- src/backend.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend.ts b/src/backend.ts index 2153c24e3..ee886366f 100644 --- a/src/backend.ts +++ b/src/backend.ts @@ -107,7 +107,7 @@ export class BackendClient extends EventEmitter { send(method: string, params: any = {}): Promise { return new Promise((fulfill, reject) => { const id = ++BackendClient._lastId; - const command = { id, guid: 'DebugController', method, params, metadata: {} }; + const command = { id, guid: 'DebugController', method, params, metadata: { timeout: 0 } }; this._transport.send(command as any); this._callbacks.set(id, { fulfill, reject }); });