From 145a20eae608f695bf3de3154be6d3e43dfdb3c2 Mon Sep 17 00:00:00 2001 From: damocles Date: Thu, 13 Aug 2026 15:01:44 +0200 Subject: [PATCH] fix the other 3 UpsertTodo construction sites CI caught --- hive-bash-mcp/src/runner.rs | 1 + hive-forge-notify/src/bin/hive-forge-notify/main.rs | 1 + hive-forge-notify/src/notify.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/hive-bash-mcp/src/runner.rs b/hive-bash-mcp/src/runner.rs index 16423582..683cab11 100644 --- a/hive-bash-mcp/src/runner.rs +++ b/hive-bash-mcp/src/runner.rs @@ -241,6 +241,7 @@ async fn upsert_bash_todo(socket: &Path, id: &str, summary: String) { key: Some(id.to_owned()), summary, source: None, + reopen_if_acked: false, }, ) .await; diff --git a/hive-forge-notify/src/bin/hive-forge-notify/main.rs b/hive-forge-notify/src/bin/hive-forge-notify/main.rs index 9eedfbcc..b1786c87 100644 --- a/hive-forge-notify/src/bin/hive-forge-notify/main.rs +++ b/hive-forge-notify/src/bin/hive-forge-notify/main.rs @@ -194,6 +194,7 @@ async fn update_assigned_rollup( key: Some("rollup".to_owned()), summary: format!("{total} open assigned: {breakdown}"), source: None, + reopen_if_acked: false, } }; diff --git a/hive-forge-notify/src/notify.rs b/hive-forge-notify/src/notify.rs index 5aaa58a3..98ad8b54 100644 --- a/hive-forge-notify/src/notify.rs +++ b/hive-forge-notify/src/notify.rs @@ -949,6 +949,7 @@ pub async fn poll_once( key: Some(format!("{}{id}", source.key_prefix())), summary: body, source: None, + reopen_if_acked: false, }; let deliver_result = hive_sock_client::request::<_, hive_agent_sock::Response>( socket,