only execute character achievement synchro in prod

This commit is contained in:
2021-08-24 21:09:16 +02:00
parent 13ab27a448
commit d5ef0a0a73

View File

@@ -40,7 +40,7 @@ class WowCharactersWorker < WowSidekiqWorker
WowCharacterDetailWorker.perform_async(wow_char.character_id)
WowCharacterPositionsWorker.perform_async(wow_char.character_id)
WowStandingWorker.perform_async(wow_char.character_id)
# WowCharacterAchievementsWorker.perform_async(wow_char.character_id)
WowCharacterAchievementsWorker.perform_async(wow_char.character_id) if Rails.env.production?
end
end
end