summaryrefslogtreecommitdiff
path: root/lib/gitlab/pagination/gitaly_keyset_pager.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/pagination/gitaly_keyset_pager.rb')
-rw-r--r--lib/gitlab/pagination/gitaly_keyset_pager.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/gitlab/pagination/gitaly_keyset_pager.rb b/lib/gitlab/pagination/gitaly_keyset_pager.rb
index e76cab688cc..8bbc9a93610 100644
--- a/lib/gitlab/pagination/gitaly_keyset_pager.rb
+++ b/lib/gitlab/pagination/gitaly_keyset_pager.rb
@@ -30,11 +30,11 @@ module Gitlab
return false unless params[:pagination] == "keyset"
if finder.is_a?(BranchesFinder)
- Feature.enabled?(:branch_list_keyset_pagination, project, default_enabled: :yaml)
+ Feature.enabled?(:branch_list_keyset_pagination, project)
elsif finder.is_a?(TagsFinder)
- Feature.enabled?(:tag_list_keyset_pagination, project, default_enabled: :yaml)
+ Feature.enabled?(:tag_list_keyset_pagination, project)
elsif finder.is_a?(::Repositories::TreeFinder)
- Feature.enabled?(:repository_tree_gitaly_pagination, project, default_enabled: :yaml)
+ Feature.enabled?(:repository_tree_gitaly_pagination, project)
else
false
end
@@ -44,11 +44,11 @@ module Gitlab
return false unless params[:page].blank? || params[:page].to_i == 1
if finder.is_a?(BranchesFinder)
- Feature.enabled?(:branch_list_keyset_pagination, project, default_enabled: :yaml)
+ Feature.enabled?(:branch_list_keyset_pagination, project)
elsif finder.is_a?(TagsFinder)
- Feature.enabled?(:tag_list_keyset_pagination, project, default_enabled: :yaml)
+ Feature.enabled?(:tag_list_keyset_pagination, project)
elsif finder.is_a?(::Repositories::TreeFinder)
- Feature.enabled?(:repository_tree_gitaly_pagination, project, default_enabled: :yaml)
+ Feature.enabled?(:repository_tree_gitaly_pagination, project)
else
false
end