fix: handle ReminderRollup in agent/manager response patterns

Add the ReminderRollup variant to exhaustive pattern matches
in both hive-ag3nt and hive-m1nd binaries.
This commit is contained in:
iris 2026-05-20 13:14:27 +02:00 committed by Mara
parent 91bfa269fd
commit 8fe0725e1d
2 changed files with 2 additions and 0 deletions

View file

@ -271,6 +271,7 @@ async fn serve(
| AgentResponse::QuestionQueued { .. }
| AgentResponse::LooseEnds { .. }
| AgentResponse::PendingRemindersCount { .. }
| AgentResponse::ReminderRollup { .. }
| AgentResponse::Whoami { .. },
) => {
tracing::warn!("recv produced unexpected response kind");

View file

@ -229,6 +229,7 @@ async fn serve(
| ManagerResponse::Logs { .. }
| ManagerResponse::LooseEnds { .. }
| ManagerResponse::PendingRemindersCount { .. }
| ManagerResponse::ReminderRollup { .. }
| ManagerResponse::Whoami { .. },
) => {
tracing::warn!("recv produced unexpected response kind");