Commit bfdd34c5 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Implement memoization in project correctly this time

parent b4349fd3
......@@ -486,7 +486,9 @@ class Project < ActiveRecord::Base
end
def has_container_registry_tags?
@images ||= container_repositories.to_a.any?(&:has_tags?) ||
return @images if defined?(@images)
@images = container_repositories.to_a.any?(&:has_tags?) ||
has_root_container_repository_tags?
end
......
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