Skip to content
代码片段 群组 项目
提交 7abf477f 编辑于 作者: Madelein van Niekerk's avatar Madelein van Niekerk
浏览文件

Merge branch '383564-remove-one-seat-requirement' into 'master'

Remove seats requirement for Advanced Search

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/139156



Merged-by: default avatarMadelein van Niekerk <mvanniekerk@gitlab.com>
Approved-by: default avatarMadelein van Niekerk <mvanniekerk@gitlab.com>
Reviewed-by: default avatarTerri Chu <tchu@gitlab.com>
Co-authored-by: default avatarTerri Chu <tchu@gitlab.com>
Co-authored-by: default avatarDmitry Gruzd <dgruzd@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -157,9 +157,8 @@ def automatically_index_in_elasticsearch? ...@@ -157,9 +157,8 @@ def automatically_index_in_elasticsearch?
return false unless ::Gitlab.com? return false unless ::Gitlab.com?
return false if expired? return false if expired?
# We only index paid groups on dot com for now. # We only index paid groups or trials on dot com for now.
# If the namespace is in trial, seats will be ignored. Plan::PAID_HOSTED_PLANS.include?(plan_name)
Plan::PAID_HOSTED_PLANS.include?(plan_name) && (trial? || seats > 0)
end end
# Kick off Elasticsearch indexing for paid groups with new or upgraded paid, hosted subscriptions # Kick off Elasticsearch indexing for paid groups with new or upgraded paid, hosted subscriptions
......
...@@ -499,8 +499,8 @@ ...@@ -499,8 +499,8 @@
context 'when seats is 0' do context 'when seats is 0' do
let(:gitlab_subscription) { build(:gitlab_subscription, namespace: namespace, seats: 0) } let(:gitlab_subscription) { build(:gitlab_subscription, namespace: namespace, seats: 0) }
it 'does not index the namespace' do it 'indexes the namespace' do
expect(ElasticsearchIndexedNamespace).not_to receive(:safe_find_or_create_by!) expect(ElasticsearchIndexedNamespace).to receive(:safe_find_or_create_by!).with(namespace_id: gitlab_subscription.namespace_id)
gitlab_subscription.save! gitlab_subscription.save!
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册