diff --git a/lib/tasks/experiments.rake b/lib/tasks/experiments.rake index f1905a840d..0b6ef30161 100644 --- a/lib/tasks/experiments.rake +++ b/lib/tasks/experiments.rake @@ -1,11 +1,9 @@ namespace :experiments do desc "Conduct an experiment for the day and send out notifications" task conduct_daily: :environment do - unless CountryConfig.current_country?("India") - Time.use_zone(CountryConfig.current[:time_zone]) do - Experimentation::Runner.call - AppointmentNotification::ScheduleExperimentReminders.call - end + Time.use_zone(CountryConfig.current[:time_zone]) do + Experimentation::Runner.call + AppointmentNotification::ScheduleExperimentReminders.call end end end