From b38a2768915ae00e2e0dea3bcd9b5cbda09c861a Mon Sep 17 00:00:00 2001 From: asatwal Date: Fri, 1 Dec 2023 10:05:54 +0000 Subject: [PATCH] Correct docs for Sidekiq CRON and fix release tag v1.11.2 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 81e94f1c..90834ed2 100644 --- a/README.md +++ b/README.md @@ -335,10 +335,10 @@ config.entity_table_checks_enabled = true Once enabled, you will need to configure the job according to the syntax and settings of your chosen background processor or scheduler. Below is an example using Sidekiq-Cron, but similar settings apply for other systems like Resque-Scheduler or Delayed Job's recurring jobs: ``` -entity_table_check_job: - cron: "0 0 * * *", #e.g. every day at midnight - class: "DfE::Analytics::EntityTableCheckJob", - queue: default +send_entity_table_checks_to_bigquery: + cron: "30 0 * * *" # Every day at 00:30. + class: "DfE::Analytics::EntityTableCheckJob" + queue: dfe_analytics ``` ## Testing