summaryrefslogtreecommitdiff
path: root/lib/banzai
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 /lib/banzai
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 'lib/banzai')
-rw-r--r--lib/banzai/filter/relative_link_filter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/banzai/filter/relative_link_filter.rb b/lib/banzai/filter/relative_link_filter.rb
index 2745905c5ff..199b3533cf4 100644
--- a/lib/banzai/filter/relative_link_filter.rb
+++ b/lib/banzai/filter/relative_link_filter.rb
@@ -150,7 +150,7 @@ module Banzai
end
def uri_type(path)
- # https://gitlab.com/gitlab-org/gitlab-ce/issues/58011
+ # https://gitlab.com/gitlab-org/gitlab-ce/issues/58657
Gitlab::GitalyClient.allow_n_plus_1_calls do
@uri_types[path] ||= current_commit.uri_type(path)
end