how to delete a job in sidekiq
问题 I am using sidekiq in my rails app. Users of my app create reports that start a sidekiq job. However, sometimes users want to be able to cancel "processing" reports. Deleting the report is easy but I also need to be able to delete the sidekiq job as well. So far I have been able to get a list of workers like so: workers = Sidekiq::Workers.new and each worker has args that include a report_id so I can identify which job belongs to which report. However, I'm not sure how to actually delete the