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:
authorAlexis Reigel <alexis.reigel.ext@siemens.com>2018-09-12 18:31:25 +0300
committerAlexis Reigel <alexis.reigel.ext@siemens.com>2018-09-12 18:31:25 +0300
commit03890558b47f1bad215807c1ce84cb99043aa01e (patch)
tree3d6898edbe513b018f9b532e372782e8a1272176 /app/controllers
parent27aeaccb6cdf51294302cf1435b45900942145d7 (diff)
rename variable from *_cnt to *_count
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/admin/runners_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/runners_controller.rb b/app/controllers/admin/runners_controller.rb
index 7b6517722ce..fbc7fa6148c 100644
--- a/app/controllers/admin/runners_controller.rb
+++ b/app/controllers/admin/runners_controller.rb
@@ -4,7 +4,7 @@ class Admin::RunnersController < Admin::ApplicationController
def index
finder = Admin::RunnersFinder.new(params: params)
@runners = finder.execute
- @active_runners_cnt = Ci::Runner.online.count
+ @active_runners_count = Ci::Runner.online.count
@sort = finder.sort_key
end