summaryrefslogtreecommitdiff
path: root/lib/gitlab/reference_counter.rb
diff options
context:
space:
mode:
authorFabio Papa <fabtheman@gmail.com>2019-07-12 17:10:20 +0000
committerFabio Papa <fabtheman@gmail.com>2019-07-12 17:10:20 +0000
commit6457d5edb7d66df5dd3d5ba1f1ea0c56a59287a8 (patch)
treec683e3d7ebcf3e188f1dd85b8701ff972e7f8a3d /lib/gitlab/reference_counter.rb
parent9b176c65159e4186f79eae2107af80e69132ba09 (diff)
parent740288f80d85210ada3eccc0f98e0843b2917d65 (diff)
downloadgitlab-ce-6457d5edb7d66df5dd3d5ba1f1ea0c56a59287a8.tar.gz
Merge branch 'master' into 'maintainers-can-create-subgroup'
# Conflicts: # doc/user/permissions.md
Diffstat (limited to 'lib/gitlab/reference_counter.rb')
-rw-r--r--lib/gitlab/reference_counter.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/reference_counter.rb b/lib/gitlab/reference_counter.rb
index d2dbc6f5ef5..1c43de35816 100644
--- a/lib/gitlab/reference_counter.rb
+++ b/lib/gitlab/reference_counter.rb
@@ -22,6 +22,7 @@ module Gitlab
end
end
+ # rubocop:disable Gitlab/RailsLogger
def decrease
redis_cmd do |redis|
current_value = redis.decr(key)
@@ -32,6 +33,7 @@ module Gitlab
end
end
end
+ # rubocop:enable Gitlab/RailsLogger
private
@@ -39,7 +41,7 @@ module Gitlab
Gitlab::Redis::SharedState.with { |redis| yield(redis) }
true
rescue => e
- Rails.logger.warn("GitLab: An unexpected error occurred in writing to Redis: #{e}")
+ Rails.logger.warn("GitLab: An unexpected error occurred in writing to Redis: #{e}") # rubocop:disable Gitlab/RailsLogger
false
end
end