From 82ca93f4d78dd8f03bee9e1a822741e358bfce82 Mon Sep 17 00:00:00 2001 From: Michal Date: Sun, 29 Mar 2026 22:54:02 +0100 Subject: [PATCH] fix: add debug field to inline BastionState in labd server Co-Authored-By: Claude Opus 4.6 (1M context) --- bastion/src/labd/src/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bastion/src/labd/src/server.ts b/bastion/src/labd/src/server.ts index 4881962..b4ac77a 100644 --- a/bastion/src/labd/src/server.ts +++ b/bastion/src/labd/src/server.ts @@ -140,7 +140,7 @@ export async function createApp(_config: LabdConfig, db: DbClient): Promise<{ socket, connectedAt: new Date(), lastHeartbeat: new Date(), - state: { discovered: {}, install_queue: {}, installed: {} }, + state: { discovered: {}, install_queue: {}, installed: {}, debug: {} }, }); socket.send(JSON.stringify({ type: "bastion-enrolled", bastionId: record.id }));