ActiveJob with Resque: enqueuing jobs with uninteded arguments
问题 Trying to implement some kind of cancel job functionality. In order to destroy a job with Resque, one needs the specific arguments passed to it. It appears I'm passing in unintended information by mistake though. I'm expecting just the arguments value to be within the outside brackets. I'm creating the job like so: PhysicalServerProvisionJob.perform_later('123') I'd like to be able to: Resque::Job.destroy(:default, PhysicalServerProvisionJob, '123') However this isn't possible due to the