summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/exclusive_lease.rake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/exclusive_lease.rake')
-rw-r--r--lib/tasks/gitlab/exclusive_lease.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/exclusive_lease.rake b/lib/tasks/gitlab/exclusive_lease.rake
index 83722bf6d94..1e11c55a017 100644
--- a/lib/tasks/gitlab/exclusive_lease.rake
+++ b/lib/tasks/gitlab/exclusive_lease.rake
@@ -3,7 +3,7 @@ namespace :gitlab 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.'
+ puts _('All exclusive lease entries were removed.')
end
end
end