fix the other 3 UpsertTodo construction sites CI caught
This commit is contained in:
parent
1b72ed56ff
commit
145a20eae6
3 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -949,6 +949,7 @@ pub async fn poll_once<S: Source, H: std::hash::BuildHasher>(
|
|||
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue