You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One thing I don't like about debouncing is that it's possible to reschedule indefinitely if the rate of operations is too high.
It'd be nice to be able to specify something along the lines of sidekiq_options debounce: {max_seconds: 300}, and then have a check to prevent rescheduling past created_at + max_seconds.
Is this something you feel fits within the gem functionality, or a better fit to handle somewhere else? If the former, I'm happy to write the PR that adds the functionality.
The text was updated successfully, but these errors were encountered:
One thing I don't like about debouncing is that it's possible to reschedule indefinitely if the rate of operations is too high.
It'd be nice to be able to specify something along the lines of
sidekiq_options debounce: {max_seconds: 300}
, and then have a check to prevent rescheduling pastcreated_at + max_seconds
.Is this something you feel fits within the gem functionality, or a better fit to handle somewhere else? If the former, I'm happy to write the PR that adds the functionality.
The text was updated successfully, but these errors were encountered: