mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
Merge pull request #6801 from ivanscinote/SCI-9865-ik
Make scheduler run only on worker [SCI-9865]
This commit is contained in:
commit
b1492ff0ce
1 changed files with 29 additions and 27 deletions
|
@ -2,33 +2,35 @@
|
|||
|
||||
require 'rufus-scheduler'
|
||||
|
||||
scheduler = Rufus::Scheduler.singleton
|
||||
if ENV['WORKER'].present?
|
||||
scheduler = Rufus::Scheduler.singleton
|
||||
|
||||
if ENV['ENABLE_TEMPLATES_SYNC'] == 'true'
|
||||
# Templates sync periodic task
|
||||
scheduler.every '12h' do
|
||||
Rails.logger.info('Templates, syncing all template projects')
|
||||
updated, total = TemplatesService.new.update_all_templates
|
||||
Rails.logger.info(
|
||||
"Templates, total number of updated projects: #{updated} out of #{total}}"
|
||||
)
|
||||
Rails.logger.flush
|
||||
if ENV['ENABLE_TEMPLATES_SYNC'] == 'true'
|
||||
# Templates sync periodic task
|
||||
scheduler.every '12h' do
|
||||
Rails.logger.info('Templates, syncing all template projects')
|
||||
updated, total = TemplatesService.new.update_all_templates
|
||||
Rails.logger.info(
|
||||
"Templates, total number of updated projects: #{updated} out of #{total}}"
|
||||
)
|
||||
Rails.logger.flush
|
||||
end
|
||||
end
|
||||
|
||||
if ENV['ENABLE_FLUICS_SYNC'] == 'true'
|
||||
scheduler.every '24h' do
|
||||
LabelPrinters::Fluics::SyncService.new.sync_templates! if LabelPrinter.fluics.any?
|
||||
end
|
||||
end
|
||||
|
||||
reminder_job_interval = ENV['REMINDER_JOB_INTERVAL'] || '1h'
|
||||
|
||||
scheduler.every reminder_job_interval do
|
||||
MyModules::DueDateReminderJob.perform_now
|
||||
RepositoryItemDateReminderJob.perform_now
|
||||
end
|
||||
|
||||
scheduler.every '1d' do
|
||||
NotificationCleanupJob.perform_now
|
||||
end
|
||||
end
|
||||
|
||||
if ENV['ENABLE_FLUICS_SYNC'] == 'true'
|
||||
scheduler.every '24h' do
|
||||
LabelPrinters::Fluics::SyncService.new.sync_templates! if LabelPrinter.fluics.any?
|
||||
end
|
||||
end
|
||||
|
||||
reminder_job_interval = ENV['REMINDER_JOB_INTERVAL'] || '1h'
|
||||
|
||||
scheduler.every reminder_job_interval do
|
||||
MyModules::DueDateReminderJob.perform_now
|
||||
RepositoryItemDateReminderJob.perform_now
|
||||
end
|
||||
|
||||
scheduler.every '1d' do
|
||||
NotificationCleanupJob.perform_now
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue