From 877d31189c73abe964a07f6012ea77da664fcb7b Mon Sep 17 00:00:00 2001 From: James Rose Date: Fri, 10 Mar 2023 16:25:06 +0000 Subject: [PATCH] Run CSV export before XML export to CDS (#1393) - 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: