Skip to content

Commit

Permalink
Add a note to README on schedule_in option for reschedule conflic…
Browse files Browse the repository at this point in the history
…t strategy (#849)

Update README.md

Added a note to README on `schedule_in` option for `reschedule` conflict strategy
  • Loading branch information
vittorius authored Oct 25, 2024
1 parent b57d638 commit 63c003f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ always scheduled in the future. Currently only attempting to retry one time.
sidekiq_options on_conflict: :reschedule
```

This strategy is intended to be used with `WhileExecuting` and will delay the job to be tried again in 5 seconds. This will mess up the sidekiq stats but will prevent exceptions from being logged and confuse your sysadmins.
This strategy is intended to be used with `WhileExecuting` and will delay the job to be tried again in 5 seconds (this delay can be configured via `sidekiq_options schedule_in: {seconds}`). This will mess up the sidekiq stats but will prevent exceptions from being logged and confuse your sysadmins.

### Custom Strategies

Expand Down

0 comments on commit 63c003f

Please sign in to comment.