summaryrefslogtreecommitdiff
path: root/app/models/blob.rb
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2019-04-09 17:21:16 +0200
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2019-04-09 17:21:16 +0200
commit469844c4f926c408cda4cb5b2a08dfd14a2c3997 (patch)
treeb6960423c74008e02f6c67488258a0c869a469ac /app/models/blob.rb
parent87f665e83e2139363f94d19bae08c3a2682c6481 (diff)
downloadgitlab-ce-469844c4f926c408cda4cb5b2a08dfd14a2c3997.tar.gz
Update comments about N + 1 Gitaly calls
To make sure all known issues are linked to the correct epic, I've gone through the code base, and updated the comments where required.
Diffstat (limited to 'app/models/blob.rb')
-rw-r--r--app/models/blob.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/blob.rb b/app/models/blob.rb
index c5766eb0327..d528bef8b19 100644
--- a/app/models/blob.rb
+++ b/app/models/blob.rb
@@ -110,7 +110,7 @@ class Blob < SimpleDelegator
end
def load_all_data!
- # Endpoint needed: gitlab-org/gitaly#756
+ # Endpoint needed: https://gitlab.com/gitlab-org/gitaly/issues/756
Gitlab::GitalyClient.allow_n_plus_1_calls do
super(project.repository) if project
end