Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
feeds
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
feeds
Merge requests
!192
Issue
#3444986
: Empty file doesn't trigger clean() to delete all imported items
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3444986
: Empty file doesn't trigger clean() to delete all imported items
issue/feeds-3444986:3444986-empty-file-doesnt
into
8.x-3.x
Overview
6
Commits
9
Pipelines
13
Changes
9
All threads resolved!
Hide all comments
Merged
Issue #3444986: Empty file doesn't trigger clean() to delete all imported items
Nigel Cunningham
requested to merge
issue/feeds-3444986:3444986-empty-file-doesnt
into
8.x-3.x
11 months ago
Overview
6
Commits
9
Pipelines
13
Changes
9
All threads resolved!
Hide all comments
Signed-off-by: Nigel Cunningham
nigel@nigelcunningham.com.au
Closes
#3444986
0
0
Merge request reports
Compare
8.x-3.x
version 12
6cd1da0c
3 weeks ago
version 11
7b0e829e
3 weeks ago
version 10
e595eefa
3 weeks ago
version 9
99e0a867
3 weeks ago
version 8
7f66bff7
1 month ago
version 7
3fe5be92
1 month ago
version 6
a4723bd6
1 month ago
version 5
61567d6b
1 month ago
version 4
ce7a154d
1 month ago
version 3
9343f485
2 months ago
version 2
cb6b89c1
2 months ago
version 1
4063ca4c
11 months ago
8.x-3.x (base)
and
latest version
latest version
6cd1da0c
9 commits,
3 weeks ago
version 12
6cd1da0c
9 commits,
3 weeks ago
version 11
7b0e829e
8 commits,
3 weeks ago
version 10
e595eefa
7 commits,
3 weeks ago
version 9
99e0a867
6 commits,
3 weeks ago
version 8
7f66bff7
5 commits,
1 month ago
version 7
3fe5be92
5 commits,
1 month ago
version 6
a4723bd6
4 commits,
1 month ago
version 5
61567d6b
4 commits,
1 month ago
version 4
ce7a154d
4 commits,
1 month ago
version 3
9343f485
3 commits,
2 months ago
version 2
cb6b89c1
2 commits,
2 months ago
version 1
4063ca4c
1 commit,
11 months ago
9 files
+
272
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
src/EventSubscriber/LazySubscriber.php
+
7
−
0
View file @ 6cd1da0c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -114,6 +114,13 @@ class LazySubscriber implements EventSubscriberInterface {
}
}
// Initialize the feed immediately after parsing, this ensures that
// item clean ups are triggered even if there are no items to process.
$feed
->
getType
()
->
getProcessor
()
->
initialize
(
$feed
);
// Finally set the parser result on the event.
$event
->
setParserResult
(
$result
);
});
Loading