diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2019-04-09 16:34:11 +0000 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2019-04-09 16:34:11 +0000 |
commit | 61ab1f7364b1ea44984a67bb6ea0f5a2b7a353c8 (patch) | |
tree | 82252d55131bebe2d7b250b0231f37b61d4941fe /lib | |
parent | 7d351a24258af028998a8c0e7bed749239a255c8 (diff) | |
parent | 469844c4f926c408cda4cb5b2a08dfd14a2c3997 (diff) | |
download | gitlab-ce-61ab1f7364b1ea44984a67bb6ea0f5a2b7a353c8.tar.gz |
Merge branch 'docs-zj-update-n-plus-one-comments' into 'master'
Update comments about N + 1 Gitaly calls
See merge request gitlab-org/gitlab-ce!27178
Diffstat (limited to 'lib')
-rw-r--r-- | lib/banzai/filter/relative_link_filter.rb | 2 |
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 |