Browse Source

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.
pull/1397/head^2
James Rose 2 years ago committed by GitHub
parent
commit
877d31189c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      config/sidekiq_cron_schedule.yml

2
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:

Loading…
Cancel
Save