summaryrefslogtreecommitdiff
path: root/lib/gitlab/checks/single_change_access.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/checks/single_change_access.rb')
-rw-r--r--lib/gitlab/checks/single_change_access.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/gitlab/checks/single_change_access.rb b/lib/gitlab/checks/single_change_access.rb
index 8e12801daee..2fd48dfbfe2 100644
--- a/lib/gitlab/checks/single_change_access.rb
+++ b/lib/gitlab/checks/single_change_access.rb
@@ -35,8 +35,7 @@ module Gitlab
end
def commits
- @commits ||= project.repository.new_commits(newrev,
- allow_quarantine: Feature.enabled?(:filter_quarantined_commits))
+ @commits ||= project.repository.new_commits(newrev)
end
protected