From 8ccfae4fc2c9d9d82fac73908401f30b7fbfb4d7 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 26 Apr 2024 19:25:27 +0200 Subject: [PATCH] don't let the big jobs run all at once --- application/migrations/196_cron_table.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/migrations/196_cron_table.php b/application/migrations/196_cron_table.php index a9f2aa7e3..f8b1dfce3 100644 --- a/application/migrations/196_cron_table.php +++ b/application/migrations/196_cron_table.php @@ -160,7 +160,7 @@ class Migration_cron_table extends CI_Migration { 'status' => 'pending', 'description' => 'Update SOTA File', 'function' => 'index.php/update/update_sota', - 'expression' => '0 0 1 * *', + 'expression' => '5 0 1 * *', 'last_run' => ($this->optionslib->get_option('sota_file_update') ? date("Y-m-d H:i", strtotime($this->optionslib->get_option('sota_file_update'))) : null), 'next_run' => null ), @@ -170,7 +170,7 @@ class Migration_cron_table extends CI_Migration { 'status' => 'pending', 'description' => 'Update WWFF File', 'function' => 'index.php/update/update_wwff', - 'expression' => '0 0 1 * *', + 'expression' => '10 0 1 * *', 'last_run' => ($this->optionslib->get_option('wwff_file_update') ? date("Y-m-d H:i", strtotime($this->optionslib->get_option('wwff_file_update'))) : null), 'next_run' => null ), @@ -180,7 +180,7 @@ class Migration_cron_table extends CI_Migration { 'status' => 'pending', 'description' => 'Update POTA File', 'function' => 'index.php/update/update_pota', - 'expression' => '0 0 1 * *', + 'expression' => '15 0 1 * *', 'last_run' => ($this->optionslib->get_option('pota_file_update') ? date("Y-m-d H:i", strtotime($this->optionslib->get_option('pota_file_update'))) : null), 'next_run' => null ), @@ -190,7 +190,7 @@ class Migration_cron_table extends CI_Migration { 'status' => 'pending', 'description' => 'Update DXCC data', 'function' => 'index.php/update/dxcc', - 'expression' => '0 0 1 */2 *', + 'expression' => '20 0 1 */2 *', 'last_run' => ($this->optionslib->get_option('dxcc_clublog_update') ? date("Y-m-d H:i", strtotime($this->optionslib->get_option('dxcc_clublog_update'))) : null), 'next_run' => null ),