Revert "Merge branch 'zj-n-1-root-show' into 'master'"

This reverts merge request !16968
This commit is contained in:
Zeger-Jan van de Weg 2018-02-20 15:07:54 +00:00
parent 07fc0ea756
commit 185f567d58
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ class RootController < Dashboard::ProjectsController
before_action :redirect_logged_user, if: -> { current_user.present? }
def index
super
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/37434
Gitlab::GitalyClient.allow_n_plus_1_calls do
super
end
end
private