delayed_jobs save completed jobs
Is there a parameter I can pass to delayed_job that will prevent it from deleting completed jobs from the delayed_jobs table? kind of like the destroy_failed_jobs but for completed jobs any ideas? It doesn't appear so. From the README: https://github.com/tobi/delayed_job By default, it will delete failed jobs (and it always deletes successful jobs). If you want to keep failed jobs, set Delayed::Job.destroy_failed_jobs = false. The failed jobs will be marked with non-null failed_at. You would probably need to hook into its destroy method such that it copies the job to another, separate table