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-01-12 21:13:20 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-01-12 21:13:20 +0300
commit7b2dc9fe33fa6298fa558bb8a018c4db6ea3644a (patch)
tree771eb11db0e30bebc74ecc00a39594cafa0b8907 /app/helpers/ci
parent462b603802e45891ac5152aea8cbc9298d7d4a53 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/ci')
-rw-r--r--app/helpers/ci/runners_helper.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/app/helpers/ci/runners_helper.rb b/app/helpers/ci/runners_helper.rb
index ab2b4fe5a23..fb75a3e15d6 100644
--- a/app/helpers/ci/runners_helper.rb
+++ b/app/helpers/ci/runners_helper.rb
@@ -67,12 +67,8 @@ module Ci
runner_install_help_page: 'https://docs.gitlab.com/runner/install/',
registration_token: Gitlab::CurrentSettings.runners_registration_token,
- # All runner counts are returned as formatted strings
- active_runners_count: Ci::Runner.online.count.to_s,
- all_runners_count: limited_counter_with_delimiter(Ci::Runner),
- instance_runners_count: limited_counter_with_delimiter(Ci::Runner.instance_type),
- group_runners_count: limited_counter_with_delimiter(Ci::Runner.group_type),
- project_runners_count: limited_counter_with_delimiter(Ci::Runner.project_type)
+ # Runner counts are returned as formatted strings
+ active_runners_count: Ci::Runner.online.count.to_s
}
end