DEV: cap notifications per run at 300 as stated in comment (#11252)

This commit is contained in:
Joffrey JAFFEUX 2020-11-17 00:08:12 +01:00 committed by GitHub
parent 6430484c40
commit de174ef0c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ module Jobs
every 5.minutes
def self.max_reminder_notifications_per_run
@@max_reminder_notifications_per_run ||= 3
@@max_reminder_notifications_per_run ||= 300
@@max_reminder_notifications_per_run
end