diff options
author | Kim Alvefur <zash@zash.se> | 2022-05-05 14:15:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-05-05 14:15:15 +0200 |
commit | b58b7a3cb08b6ccd6b4803102a9e14491c4d9882 (patch) | |
tree | 77f438924580d3211d054bdd6f7e79c194095a42 /teal-src | |
parent | 75a15e67f60fcce8df742e68fc5ca988313f47a5 (diff) | |
parent | 38c67064b3d36738e5db241041612eaeed6e79b4 (diff) | |
download | prosody-b58b7a3cb08b6ccd6b4803102a9e14491c4d9882.tar.gz prosody-b58b7a3cb08b6ccd6b4803102a9e14491c4d9882.zip |
Merge 0.12->trunk
Diffstat (limited to 'teal-src')
-rw-r--r-- | teal-src/plugins/mod_cron.tl | 1 |
1 files changed, 1 insertions, 0 deletions
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 |