-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Fix Feed Exporter issue with Post Processing #5581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Feed Exporter issue with Post Processing #5581
Conversation
This is under discussion with @Gallaecio. |
Proposed test: felipeboffnunes#1 |
Test the life cycle of a storage file
Codecov Report
@@ Coverage Diff @@
## master #5581 +/- ##
==========================================
+ Coverage 88.84% 88.86% +0.01%
==========================================
Files 162 162
Lines 11055 11062 +7
Branches 1800 1802 +2
==========================================
+ Hits 9822 9830 +8
Misses 954 954
+ Partials 279 278 -1
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice
Fixes #5500
It fixes the issue above. It happens because when dealing with Post Processing, file is wrapped around a
PostProcessingManager
, which becomes the *arg for the following procedures that will happen inFeedExporter
. Those procedures believe they are handling directly the file: this is not the case when Post Processing is involved, since the file becomes an attribute of thePostProcessingManager
in these cases.We need to test this, but it's a very straightforward bug nevertheless.