Commit e4b69bc2 authored by Andrew Newdigate's avatar Andrew Newdigate

Allow n+1s caused by avatar fetches on the project dashboard. See...

Allow n+1s caused by avatar fetches on the project dashboard. See https://gitlab.com/gitlab-org/gitlab-ce/issues/38261
parent 4d88f649
...@@ -534,10 +534,13 @@ class Repository ...@@ -534,10 +534,13 @@ class Repository
cache_method :tag_count, fallback: 0 cache_method :tag_count, fallback: 0
def avatar def avatar
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/38327
Gitlab::GitalyClient.allow_n_plus_1_calls do
if tree = file_on_head(:avatar) if tree = file_on_head(:avatar)
tree.path tree.path
end end
end end
end
cache_method :avatar cache_method :avatar
def readme def readme
......
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