Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
5fd680f3
Commit
5fd680f3
authored
Nov 30, 2021
by
Francisco Javier López
Committed by
Bob Van Landuyt
Nov 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use linear version ApplicationSettings#elasticsearch_limited_namespaces
parent
0f685998
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
31 deletions
+7
-31
config/feature_flags/development/linear_application_settings_elasticsearch_limited_namespaces.yml
...application_settings_elasticsearch_limited_namespaces.yml
+0
-8
ee/app/models/ee/application_setting.rb
ee/app/models/ee/application_setting.rb
+1
-5
ee/spec/models/application_setting_spec.rb
ee/spec/models/application_setting_spec.rb
+6
-18
No files found.
config/feature_flags/development/linear_application_settings_elasticsearch_limited_namespaces.yml
deleted
100644 → 0
View file @
0f685998
---
name
:
linear_application_settings_elasticsearch_limited_namespaces
introduced_by_url
:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/68931
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/339438
milestone
:
'
14.3'
type
:
development
group
:
group::access
default_enabled
:
false
ee/app/models/ee/application_setting.rb
View file @
5fd680f3
...
...
@@ -235,11 +235,7 @@ module EE
return
namespaces
if
ignore_descendants
if
::
Feature
.
enabled?
(
:linear_application_settings_elasticsearch_limited_namespaces
,
default_enabled: :yaml
)
namespaces
.
self_and_descendants
else
::
Gitlab
::
ObjectHierarchy
.
new
(
namespaces
).
base_and_descendants
end
end
def
pseudonymizer_available?
...
...
ee/spec/models/application_setting_spec.rb
View file @
5fd680f3
...
...
@@ -440,7 +440,6 @@ RSpec.describe ApplicationSetting do
let!
(
:child_group
)
{
create
(
:group
,
parent:
groups
.
first
)
}
let!
(
:child_group_indexed_through_parent
)
{
create
(
:group
,
parent:
groups
.
last
)
}
shared_examples
'returns groups that are allowed to be indexed'
do
specify
do
create
(
:elasticsearch_indexed_namespace
,
namespace:
child_group
)
...
...
@@ -451,17 +450,6 @@ RSpec.describe ApplicationSetting do
end
end
it_behaves_like
'returns groups that are allowed to be indexed'
context
'when feature flag :linear_application_settings_elasticsearch_limited_namespaces is disabled'
do
before
do
stub_feature_flags
(
linear_application_settings_elasticsearch_limited_namespaces:
false
)
end
it_behaves_like
'returns groups that are allowed to be indexed'
end
end
describe
'#elasticsearch_indexes_project?'
do
shared_examples
'whether the project is indexed'
do
context
'when project is in a subgroup'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment