summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/exclusive_lease.rake
blob: 27582819e0b7e70a45b84eed40b4fa42ad44eb46 (plain)
1
2
3
4
5
6
7
8
9
namespace :gitlab do
  namespace :exclusive_lease do
    desc 'GitLab | Clear existing exclusive leases'
    task clear: :environment do
      Gitlab::ExclusiveLease.reset_all!
      puts 'All exclusive lease entries were removed.'
    end
  end
end