Shut up, Rubocop

This commit is contained in:
Robert Speicher 2016-04-14 12:28:48 -04:00
parent 77daebe660
commit 7ef35b9c61
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
module RepositoryCheck module RepositoryCheck
class ClearWorker class ClearWorker
include Sidekiq::Worker include Sidekiq::Worker
sidekiq_options retry: false sidekiq_options retry: false
def perform def perform
# Do small batched updates because these updates will be slow and locking # Do small batched updates because these updates will be slow and locking
Project.select(:id).find_in_batches(batch_size: 100) do |batch| Project.select(:id).find_in_batches(batch_size: 100) do |batch|
@ -14,4 +14,4 @@ module RepositoryCheck
end end
end end
end end
end end