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-08-10 15:12:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-10 15:12:15 +0300
commit70eb0cf7518e1ccc2a26d9aaa9fc16e21c6de5f1 (patch)
tree01b2cad5224d5f9664b840ff75610db60b9ff095 /lib/gitlab/performance_bar
parentae1c8db2c805a6d3fad3a66fa31bd414cc071490 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/performance_bar')
-rw-r--r--lib/gitlab/performance_bar/redis_adapter_when_peek_enabled.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/performance_bar/redis_adapter_when_peek_enabled.rb b/lib/gitlab/performance_bar/redis_adapter_when_peek_enabled.rb
index ac5c907465e..fbc77113875 100644
--- a/lib/gitlab/performance_bar/redis_adapter_when_peek_enabled.rb
+++ b/lib/gitlab/performance_bar/redis_adapter_when_peek_enabled.rb
@@ -17,7 +17,7 @@ module Gitlab
# to a structured log
# rubocop:disable Gitlab/ModuleWithInstanceVariables
def enqueue_stats_job(request_id)
- return unless Feature.enabled?(:performance_bar_stats)
+ return unless Feature.enabled?(:performance_bar_stats, type: :ops)
@client.sadd(GitlabPerformanceBarStatsWorker::STATS_KEY, request_id)