From 38c67064b3d36738e5db241041612eaeed6e79b4 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 5 May 2022 14:10:59 +0200 Subject: mod_cron: Fix recording last task run time #1751 The type checks, they do nothing! Observed: Tasks that were supposed to run weekly or daily were running each hour. --- teal-src/plugins/mod_cron.tl | 1 + 1 file changed, 1 insertion(+) (limited to 'teal-src') diff --git a/teal-src/plugins/mod_cron.tl b/teal-src/plugins/mod_cron.tl index 1375a195..f3b8f62f 100644 --- a/teal-src/plugins/mod_cron.tl +++ b/teal-src/plugins/mod_cron.tl @@ -84,6 +84,7 @@ end local function run_task(task : task_spec) local started_at = os.time(); task:run(started_at); + task.last = started_at; task:save(started_at); end -- cgit v1.2.3