add optional in_reply_to field on send for conversation threading
This commit is contained in:
parent
03db764101
commit
67b47872e0
9 changed files with 90 additions and 16 deletions
|
|
@ -480,6 +480,7 @@ impl Coordinator {
|
|||
from: hive_sh4re::SYSTEM_SENDER.to_owned(),
|
||||
to: name.to_owned(),
|
||||
body,
|
||||
in_reply_to: None,
|
||||
}) {
|
||||
tracing::warn!(error = ?e, %name, "kick_agent: broker.send failed");
|
||||
}
|
||||
|
|
@ -510,6 +511,7 @@ impl Coordinator {
|
|||
from: hive_sh4re::SYSTEM_SENDER.to_owned(),
|
||||
to: agent.to_owned(),
|
||||
body,
|
||||
in_reply_to: None,
|
||||
}) {
|
||||
tracing::warn!(error = ?e, target = %agent, "failed to push helper event");
|
||||
}
|
||||
|
|
@ -529,6 +531,7 @@ impl Coordinator {
|
|||
from: from.to_owned(),
|
||||
to: agent_name.clone(),
|
||||
body: broadcast_body.clone(),
|
||||
in_reply_to: None,
|
||||
}) {
|
||||
errors.push(format!("{agent_name}: {e}"));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue