Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2019-04-09 18:21:16 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2019-04-09 18:21:16 +0300
commit469844c4f926c408cda4cb5b2a08dfd14a2c3997 (patch)
treeb6960423c74008e02f6c67488258a0c869a469ac /app/controllers/dashboard
parent87f665e83e2139363f94d19bae08c3a2682c6481 (diff)
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/controllers/dashboard')
-rw-r--r--app/controllers/dashboard/projects_controller.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/controllers/dashboard/projects_controller.rb b/app/controllers/dashboard/projects_controller.rb
index 0a47736cad8..70811f5ea59 100644
--- a/app/controllers/dashboard/projects_controller.rb
+++ b/app/controllers/dashboard/projects_controller.rb
@@ -14,8 +14,7 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
respond_to do |format|
format.html do
- # n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/37434
- # Also https://gitlab.com/gitlab-org/gitlab-ce/issues/40260
+ # n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/40260
Gitlab::GitalyClient.allow_n_plus_1_calls do
render
end