-
Notifications
You must be signed in to change notification settings - Fork 225
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
intercom backend refactoring: make data flow comprehensible #1251
base: master
Are you sure you want to change the base?
Conversation
01c8b24
to
be061ea
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1251 +/- ##
==========================================
- Coverage 91.94% 91.93% -0.02%
==========================================
Files 377 376 -1
Lines 22295 21029 -1266
==========================================
- Hits 20499 19332 -1167
+ Misses 1796 1697 -99 ☔ View full report in Codecov by Sentry. |
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.
Consider questions and give me some feedback
InterComBackEndBinarySearchTask(), | ||
InterComBackEndUpdateTask(self.analysis_service.update_analysis_of_object_and_children), | ||
InterComBackEndDeleteFile( | ||
self.analysis_service.update_analysis_of_object_and_children, |
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.
Why do I need to update_analysis_of_object_and_children
if I want to delete a firmware?
self.process.start() | ||
|
||
def shutdown(self): | ||
self.stop_condition.value = 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.
I guess this plays into the make data flow comprehensible goal, but this does create another dozen or so file descriptors compared to sharing one stop condition over all listeners, right?
No description provided.