Commit be3a0377 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Fix memoization-related rubocop offense in project

parent e4eb330a
...@@ -1417,10 +1417,14 @@ class Project < ActiveRecord::Base ...@@ -1417,10 +1417,14 @@ class Project < ActiveRecord::Base
Ci::Runner.from("(#{union.to_sql}) ci_runners") Ci::Runner.from("(#{union.to_sql}) ci_runners")
end end
def any_runners?(&block) def active_runners
@active_runners ||= all_runners.active strong_memoize(:active_runners) do
all_runners.active
end
end
@active_runners.any?(&block) def any_runners?(&block)
active_runners.any?(&block)
end end
def valid_runners_token?(token) def valid_runners_token?(token)
......
...@@ -47,8 +47,6 @@ module Gitlab ...@@ -47,8 +47,6 @@ module Gitlab
# Sends a notification based on the number of executed SQL queries. # Sends a notification based on the number of executed SQL queries.
def act_upon_results def act_upon_results
puts "XXXX\n\n\n\n\n #{count} \n\n\nXXXX"
return unless threshold_exceeded? return unless threshold_exceeded?
error = ThresholdExceededError.new(error_message) error = ThresholdExceededError.new(error_message)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment