summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/exclusive_lease.rake
blob: 83722bf6d94b2df8f3417b2255ca00d49d935c40 (plain)
1
2
3
4
5
6
7
8
9
namespace :gitlab do
  namespace :exclusive_lease do
    desc 'GitLab | Clear existing exclusive leases for specified scope (default: *)'
    task :clear, [:scope] => [:environment] do |_, args|
      args[:scope].nil? ? Gitlab::ExclusiveLease.reset_all! : Gitlab::ExclusiveLease.reset_all!(args[:scope])
      puts 'All exclusive lease entries were removed.'
    end
  end
end