Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
config_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_ignore
Merge requests
!25
Issue
#3432315
: Resolve PHP errors on config sync.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3432315
: Resolve PHP errors on config sync.
issue/config_ignore-3432315:3432315-ignoring-any-config
into
8.x-3.x
Overview
1
Commits
13
Pipelines
14
Changes
2
All threads resolved!
Hide all comments
Merged
Sakthi Shanmuga Sundaram M
requested to merge
issue/config_ignore-3432315:3432315-ignoring-any-config
into
8.x-3.x
1 year ago
Overview
1
Commits
13
Pipelines
14
Changes
2
All threads resolved!
Hide all comments
Expand
Related to
#3432315
0
0
Merge request reports
Compare
8.x-3.x
version 12
5ba86cfc
1 year ago
version 11
3f4cadaa
1 year ago
version 10
f6556a42
1 year ago
version 9
ae67d3e6
1 year ago
version 8
98858bfe
1 year ago
version 7
a8c5e65c
1 year ago
version 6
aecf21f0
1 year ago
version 5
85659652
1 year ago
version 4
4a6035d3
1 year ago
version 3
d19fc191
1 year ago
version 2
d57058f3
1 year ago
version 1
c1046519
1 year ago
8.x-3.x (base)
and
latest version
latest version
729a2979
13 commits,
1 year ago
version 12
5ba86cfc
12 commits,
1 year ago
version 11
3f4cadaa
11 commits,
1 year ago
version 10
f6556a42
10 commits,
1 year ago
version 9
ae67d3e6
9 commits,
1 year ago
version 8
98858bfe
8 commits,
1 year ago
version 7
a8c5e65c
7 commits,
1 year ago
version 6
aecf21f0
6 commits,
1 year ago
version 5
85659652
5 commits,
1 year ago
version 4
4a6035d3
4 commits,
1 year ago
version 3
d19fc191
3 commits,
1 year ago
version 2
d57058f3
2 commits,
1 year ago
version 1
c1046519
1 commit,
1 year ago
2 files
+
21
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/EventSubscriber/ConfigIgnoreEventSubscriber.php
+
4
−
0
Options
@@ -133,6 +133,10 @@ class ConfigIgnoreEventSubscriber implements EventSubscriberInterface, CacheTags
// Get the config ignore settings form the transformation storage.
$transformation_storage
=
$transformation_storage
->
createCollection
(
StorageInterface
::
DEFAULT_COLLECTION
);
if
(
empty
(
$transformation_storage
->
listAll
()))
{
// Do not ignore anything if the transformation storage is empty in the default collection.
return
;
}
if
(
$transformation_storage
->
exists
(
'config_ignore.settings'
))
{
try
{
// This can be used to hook into config ignore via an event subscriber
Loading