-
Notifications
You must be signed in to change notification settings - Fork 185
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 fw security #4312
Fix fw security #4312
Conversation
Signed-off-by: Xiaoxue Wang <[email protected]>
Signed-off-by: Xiaoxue Wang <[email protected]>
Signed-off-by: Xiaoxue Wang <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4312 +/- ##
=======================================
Coverage 77.17% 77.17%
=======================================
Files 765 765
Lines 41753 41764 +11
Branches 8815 8819 +4
=======================================
+ Hits 32221 32232 +11
- Misses 8464 8465 +1
+ Partials 1068 1067 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -123,13 +123,21 @@ class FwupdagentDevices(CommandParser, JSONParser): | |||
>>> len(devices["Devices"]) | |||
2 | |||
""" | |||
pass | |||
def _handle_content(self, context): |
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.
It looks not a good idea to cut the content in the _handle_content
level. Why not re-implement it in parse_content
?
All Pull Requests:
Check all that apply:
Complete Description of Additions/Changes:
RHINENG-14570