Skip to content

Commit

Permalink
Correct docs for Sidekiq CRON and fix release tag v1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asatwal committed Dec 1, 2023
1 parent 2ec9382 commit b38a276
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b38a276

Please sign in to comment.