Skip to content
代码片段 群组 项目
提交 e2cf2f7d 编辑于 作者: Siddharth Dungarwal's avatar Siddharth Dungarwal
浏览文件

Merge branch '434111-fix-zoekt-page-error' into 'master'

No related branches found
No related tags found
无相关合并请求
......@@ -209,7 +209,7 @@ def zoekt_search_and_wrap(query, per_page:, page: 1, options: {}, preload_method
end
def yield_each_zoekt_search_result(response, preload_method, total_count)
return [[], total_count] if total_count == 0
return [[], total_count] if total_count == 0 || response.blank?
project_ids = response.pluck(:project_id).uniq # rubocop:disable CodeReuse/ActiveRecord
projects = Project.with_route.id_in(project_ids)
......
......@@ -59,6 +59,13 @@
expect(results.blobs_count).to eq 5
end
it 'returns empty result when request is out of page range' do
results = described_class.new(user, 'use.*egex', limit_project_ids, node_id: node_id)
blobs_page = results.objects('blobs', page: 256, per_page: 2)
expect(blobs_page).to be_empty
end
it 'limits to the zoekt count limit' do
stub_const("#{described_class}::ZOEKT_COUNT_LIMIT", 2)
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册