From e3cfc6294903b2fa7363392fe3f1322464b735a6 Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 22 Jan 2023 21:02:43 +0100 Subject: [PATCH] butcher/main: notify the watchdog --- butcher/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/butcher/src/main.rs b/butcher/src/main.rs index 7b935b3..4d6432f 100644 --- a/butcher/src/main.rs +++ b/butcher/src/main.rs @@ -51,6 +51,8 @@ async fn main() { if ! update_set.is_empty() { trend_setter_tx.send(update_set).await.unwrap(); } + + cave::systemd::watchdog(); } }).await; }