1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-29 18:52:22 +01:00

prevent multiple version check at start time

This commit is contained in:
Sylvain 2020-03-03 18:27:43 +01:00
parent 6aafd0c7e1
commit 9e618274fc

View File

@ -19,7 +19,10 @@ class Version
return if (Rails.env.development? || Rails.env.test?) && ENV['FORCE_VERSION_CHECK'] != 'true'
VersionCheckWorker.perform_async
# every sunday at 1:15am
return if Sidekiq::Cron::Job.find name: 'Automatic version check'
# schedule version check every day at the current time
# this will prevent that all the instances to query the hub simultaneously
m = DateTime.current.minute
h = DateTime.current.hour
d = DateTime.current.cwday