From a26d183f8ee45780ea6728c76dae98ebd7e4f6f8 Mon Sep 17 00:00:00 2001 From: ironballista <87903825+ironballista@users.noreply.github.com> Date: Sun, 09 Mar 2025 21:38:54 +0000 Subject: [PATCH] Fixed crontab syntax. --- src/main.rs | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/src/main.rs b/src/main.rs --- a/src/main.rs +++ b/src/main.rs @@ -20,7 +20,7 @@ const DEFAULT_QUEUE: &str = "queue:default"; const EVENT_QUEUE: &str = "queue:event"; // See https://cron.help for what these strings mean -const POSTING_INTERVAL_CRON: &str = "00,30 * * * * * *"; +const POSTING_INTERVAL_CRON: &str = "0 0,30 * * * *"; const EVENT_UPDATE_INTERVAL: &str = "55 23 * * *"; fn prepare_post>(text: I) -> post::RecordData { -- tangled.sh