From 63c003f8acf1011a38bcb40bfc06c29be61ea2c2 Mon Sep 17 00:00:00 2001 From: Victor Zagorodny Date: Fri, 25 Oct 2024 14:10:35 +0300 Subject: [PATCH] Add a note to README on `schedule_in` option for `reschedule` conflict strategy (#849) Update README.md Added a note to README on `schedule_in` option for `reschedule` conflict strategy --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8fa7c60a..e04c0ab0 100644 --- a/README.md +++ b/README.md @@ -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