From ea03116ad09637befdf209bb2e23f493ca0dcb74 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Mon, 29 Sep 2025 18:53:01 +0200 Subject: [PATCH] Remove unused job --- app/jobs/card/auto_reconsider_all_stagnated_job.rb | 7 ------- config/recurring.yml | 3 --- 2 files changed, 10 deletions(-) delete mode 100644 app/jobs/card/auto_reconsider_all_stagnated_job.rb diff --git a/app/jobs/card/auto_reconsider_all_stagnated_job.rb b/app/jobs/card/auto_reconsider_all_stagnated_job.rb deleted file mode 100644 index b7178f916..000000000 --- a/app/jobs/card/auto_reconsider_all_stagnated_job.rb +++ /dev/null @@ -1,7 +0,0 @@ -class Card::AutoReconsiderAllStagnatedJob < ApplicationJob - def perform - ApplicationRecord.with_each_tenant do |tenant| - Card.auto_reconsider_all_stagnated - end - end -end diff --git a/config/recurring.yml b/config/recurring.yml index 7d038471a..14d058592 100644 --- a/config/recurring.yml +++ b/config/recurring.yml @@ -2,9 +2,6 @@ production: &production auto_postpone_all_due: class: Card::AutoPostponeAllDueJob schedule: every hour - auto_reconsider_all_inactive: - class: Card::AutoReconsiderAllStagnatedJob - schedule: every hour remove_abandoned_creations: class: RemoveAbandonedCreationsJob schedule: every hour