Remove reference to nonexistent Sidekiq::Throttled gem (#950)

The sidekiq-throttled gem is not in the Gemfile, so including
Sidekiq::Throttled::Job causes an uninitialized constant NameError
at boot time, breaking production builds.

https://claude.ai/code/session_01Bj7xgndJt28BcUHW1v1M9S

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Juan José Mata
2026-02-09 16:32:38 +01:00
committed by GitHub
parent b40dd30261
commit 17df5179ae
2 changed files with 0 additions and 3 deletions

View File

@@ -1,8 +1,6 @@
# frozen_string_literal: true
class IndexaCapitalActivitiesFetchJob < ApplicationJob
include Sidekiq::Throttled::Job
queue_as :default
sidekiq_options lock: :until_executed,

View File

@@ -2,7 +2,6 @@
class <%= class_name %>ActivitiesFetchJob < ApplicationJob
include <%= class_name %>Account::DataHelpers
include Sidekiq::Throttled::Job
queue_as :default