Home > database >  Sidekiq remove schedule documentation
Sidekiq remove schedule documentation

Time:12-22

There are 2 methods in the documentation of gem 'sidekiq-scheduler' to work with dynamic schedule (https://github.com/moove-it/sidekiq-scheduler#dynamic-schedule):

Sidekiq.set_schedule('heartbeat', { 'every' => ['1m'], 'class' => 'HeartbeatWorker' })
Sidekiq.get_schedule

But I can't find any method to remove the schedule that was already set before.

Is there a way to find documentation with a full list of methods of the Sidekiq (with method description)?

CodePudding user response:

You can use remove_schedule(name) to remove a schedule that has been set already. You can find more information, including the available methods in the RubyDocs v2.0.20 or v3.0.0.

  • Related