fix(agent): close run() wrapper calls in replayed hook wiring

This commit is contained in:
argenis de la rosa 2026-02-28 18:06:14 -05:00 committed by Argenis
parent 408616b34e
commit 728782d369
3 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ async fn run_agent_job(
vec![],
false,
None,
)
))
.await
}
};

View File

@ -223,7 +223,7 @@ async fn run_heartbeat_worker(config: Config) -> Result<()> {
vec![],
false,
None,
)
))
.await
{
Ok(output) => {

View File

@ -926,7 +926,7 @@ async fn main() -> Result<()> {
peripheral,
interactive,
None,
)
))
.await
.map(|_| ())
}