Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
config_split_ignore
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
config_split_ignore
Merge requests
!5
Skip if $this->active is empty.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Skip if $this->active is empty.
issue/config_split_ignore-3421708:8.x-1.x
into
8.x-1.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Xiaojun Deng
requested to merge
issue/config_split_ignore-3421708:8.x-1.x
into
8.x-1.x
2 weeks ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Somehow, I still see error that $this->active is NULL, from line 195.
0
0
Merge request reports
Compare
8.x-1.x
8.x-1.x (base)
and
latest version
latest version
7a5ea099
1 commit,
2 weeks ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Plugin/ConfigFilter/ConfigSplitIgnoreFilter.php
+
1
−
1
Options
@@ -189,7 +189,7 @@ class ConfigSplitIgnoreFilter extends IgnoreFilter {
}
}
if
(
!
empty
(
$this
->
getFilteredStorage
()
->
getCollectionName
()))
{
if
(
!
empty
(
$this
->
getFilteredStorage
()
->
getCollectionName
())
&&
!
empty
(
$this
->
active
)
)
{
// In collections, treat config as existing
// if it is ignored and exists in the active storage.
$active_names
=
$this
->
active
->
listAll
(
$prefix
);
Loading