From 75c862757708f9d4293ff7f0533d215564ccda02 Mon Sep 17 00:00:00 2001 From: Zach Gollwitzer Date: Tue, 4 Feb 2025 13:54:14 -0500 Subject: [PATCH] Temporarily disable data enrichment jobs until optimized --- app/models/account/syncer.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/account/syncer.rb b/app/models/account/syncer.rb index 37074aa7..8f5ebc3a 100644 --- a/app/models/account/syncer.rb +++ b/app/models/account/syncer.rb @@ -15,7 +15,8 @@ class Account::Syncer # Enrich if user opted in or if we're syncing transactions from a Plaid account on the hosted app if account.family.data_enrichment_enabled? || (account.plaid_account_id.present? && Rails.application.config.app_mode.hosted?) - account.enrich_data_later + # Temporarily disable until optimizations complete + # account.enrich_data_later else Rails.logger.info("Data enrichment is disabled, skipping enrichment for account #{account.id}") end