From a789c096e7722620c1648c153099c4ffaa04b868 Mon Sep 17 00:00:00 2001 From: damocles Date: Wed, 3 Jun 2026 12:35:21 +0200 Subject: [PATCH] feat(#1135): transient wake for matrix mcp events - bypass broker sqlite --- hive-matrix-mcp/src/wake.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/hive-matrix-mcp/src/wake.rs b/hive-matrix-mcp/src/wake.rs index 45766c5c..3bc66975 100644 --- a/hive-matrix-mcp/src/wake.rs +++ b/hive-matrix-mcp/src/wake.rs @@ -40,6 +40,7 @@ pub async fn send_wake(socket: &Path, body: impl AsRef) -> Result<()> { "cmd": "wake", "from": "matrix", "body": body.as_ref(), + "transient": true, }); let line = format!("{}\n", serde_json::to_string(&payload)?); let stream = UnixStream::connect(socket)