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>2023-02-17 03:09:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-17 03:09:32 +0300
commit1b1bd461da768b31adb730f42060b7d6adf548c5 (patch)
treef0150b942ee4e9f5798418aad6da669de6ace00b /app/services/protected_branches
parent2c34e41161b78fddbdff9a858086e95558e06ba0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/protected_branches')
-rw-r--r--app/services/protected_branches/cache_service.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/services/protected_branches/cache_service.rb b/app/services/protected_branches/cache_service.rb
index af8c9ce74bb..4a9fc335421 100644
--- a/app/services/protected_branches/cache_service.rb
+++ b/app/services/protected_branches/cache_service.rb
@@ -81,7 +81,11 @@ module ProtectedBranches
end
def metrics
- @metrics ||= Gitlab::Cache::Metrics.new(
+ @metrics ||= Gitlab::Cache::Metrics.new(cache_metadata)
+ end
+
+ def cache_metadata
+ Gitlab::Cache::Metadata.new(
caller_id: Gitlab::ApplicationContext.current_context_attribute(:caller_id),
cache_identifier: "#{self.class}#fetch",
feature_category: :source_code_management,