Skip to content
Snippets Groups Projects

Prepare 11.0 RC6 EE release

Merged Alessio Caiazza requested to merge 11-0-stable-ee-prepare-rc6 into 11-0-stable-ee
2 files
+ 7
5
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 7
3
@@ -1442,10 +1442,14 @@ def all_runners
Ci::Runner.from("(#{union.to_sql}) ci_runners")
end
def any_runners?(&block)
@active_runners ||= all_runners.active
def active_runners
strong_memoize(:active_runners) do
all_runners.active
end
end
@active_runners.any?(&block)
def any_runners?(&block)
active_runners.any?(&block)
end
def valid_runners_token?(token)
Loading