debian-mirror-gitlab/lib/tasks/gitlab/exclusive_lease.rake
2021-03-11 19:13:27 +05:30

12 lines
427 B
Ruby

# frozen_string_literal: true
namespace :gitlab do
namespace :exclusive_lease do
desc 'GitLab | Exclusive Lease | 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