remove obsolete periodic job

Change-Id: I5843f7efc6bc59fb009d0dd5019a896d5d7a29db
Reviewed-on: https://gerrit.instructure.com/25912
Reviewed-by: Zach Pendleton <zachp@instructure.com>
QA-Review: Zach Pendleton <zachp@instructure.com>
Product-Review: Brian Palmer <brianp@instructure.com>
Tested-by: Brian Palmer <brianp@instructure.com>
This commit is contained in:
Brian Palmer 2013-10-31 17:51:24 -06:00
parent 3c9079042d
commit 9afb6df071
1 changed files with 0 additions and 13 deletions

View File

@ -78,19 +78,6 @@ if IncomingMail::IncomingMessageProcessor.run_periodically?
end
end
if PageView.redis_queue?
# periodically pull new page views off the cache and insert them into the db
Delayed::Periodic.cron 'PageView.process_cache_queue', '*/1 * * * *' do
Shard.with_each_shard do
unless Shard.current.settings[:process_page_view_queue] == false
PageView.send_later_enqueue_args(:process_cache_queue,
:singleton => "PageView.process_cache_queue:#{Shard.current.id}",
:max_attempts => 1)
end
end
end
end
Delayed::Periodic.cron 'ErrorReport.destroy_error_reports', '35 */1 * * *' do
cutoff = Setting.get('error_reports_retain_for', 3.months.to_s).to_i
if cutoff > 0