summaryrefslogtreecommitdiff
path: root/app/workers/repository_check/clear_worker.rb
blob: 81e1a4b63bbb7ed24131a42c02363896e5ee5b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module RepositoryCheck
  class ClearWorker
    include ApplicationWorker
    include RepositoryCheckQueue

    def perform
      # Do small batched updates because these updates will be slow and locking
      Project.select(:id).find_in_batches(batch_size: 100) do |batch|
        Project.where(id: batch.map(&:id)).update_all(
          last_repository_check_failed: nil,
          last_repository_check_at: nil
        )
      end
    end
  end
end