1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-25 08:09:38 +02:00

Temporarily disable data enrichment jobs until optimized

This commit is contained in:
Zach Gollwitzer 2025-02-04 13:54:14 -05:00
parent 15e8281d46
commit 75c8627577

View file

@ -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