From 2543c9ed5828973e8d83bd79b85a3acbc512680c Mon Sep 17 00:00:00 2001 From: James Rose Date: Wed, 8 Mar 2023 10:45:03 +0000 Subject: [PATCH] Run CSV export before XML export to CDS - The XML export mutates the `LogsExport` table which determines the period in which logs are exported. - The CSV export does not change this table, so if the CSV gets ran at the same time as the XML log it could skip records. --- config/sidekiq_cron_schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/sidekiq_cron_schedule.yml b/config/sidekiq_cron_schedule.yml index 46cb10ff2..7c91706ab 100644 --- a/config/sidekiq_cron_schedule.yml +++ b/config/sidekiq_cron_schedule.yml @@ -1,5 +1,5 @@ data_export_csv: - cron: "every day at 5am" + cron: "every day at 4am" class: "DataExportCsvJob" queue: default data_export_xml: