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
Our config/application.rb contains the following line:
config.good_job.preserve_job_records=false
The job itself is declared thusly:
classDetectBundleExtensionJob < ApplicationJob# @TODO: While we are migrating from Sidekiq, declare individual queue adapters where neededself.queue_adapter=:good_jobretry_onStandardError,attempts: 0defperform(inspection_id)# implementationendend
How come the dashboard shows completed jobs? I mean the navbar/page header as well as the list of jobs at the bottom.
In the end, we want to preserve jobs for a bit, but we had an issue (unrelated to GoodJob) and we haven't reset our config to preserve records yet.
The text was updated successfully, but these errors were encountered:
Our
config/application.rb
contains the following line:The job itself is declared thusly:
How come the dashboard shows completed jobs? I mean the navbar/page header as well as the list of jobs at the bottom.
In the end, we want to preserve jobs for a bit, but we had an issue (unrelated to GoodJob) and we haven't reset our config to preserve records yet.
The text was updated successfully, but these errors were encountered: