Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-24 03:14:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-24 03:14:11 +0300
commitf70958a8932f70733e08ee1774edd28423bac59e (patch)
tree255c18df6d34de3972d4b53f1916fab05fb6f228 /lib/gitlab/cache
parent0978fc4c40151a0dccbcb3d348969a6920a58e09 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/cache')
-rw-r--r--lib/gitlab/cache/ci/project_pipeline_status.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/cache/ci/project_pipeline_status.rb b/lib/gitlab/cache/ci/project_pipeline_status.rb
index 99ce1119c17..9209c9b4927 100644
--- a/lib/gitlab/cache/ci/project_pipeline_status.rb
+++ b/lib/gitlab/cache/ci/project_pipeline_status.rb
@@ -108,7 +108,7 @@ module Gitlab
return self.loaded unless self.loaded.nil?
Gitlab::Redis::Cache.with do |redis|
- redis.exists(cache_key)
+ redis.exists?(cache_key) # rubocop:disable CodeReuse/ActiveRecord
end
end