-
Notifications
You must be signed in to change notification settings - Fork 131
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
1589743: Don't log pings twice #407
Conversation
ff404d6
to
173f11f
Compare
Codecov Report
@@ Coverage Diff @@
## master #407 +/- ##
============================================
+ Coverage 76.27% 76.29% +0.01%
Complexity 308 308
============================================
Files 95 95
Lines 5369 5365 -4
Branches 631 629 -2
============================================
- Hits 4095 4093 -2
+ Misses 806 805 -1
+ Partials 468 467 -1
Continue to review full report at Codecov.
|
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 initially had concerns regarding where to log.
Keeping that only in Rust would mean we don't need to do it again for iOS as well.
But I guess keeping it in the uploader makes more sense, otherwise we might miss some that are triggered from Rust internally where we don't have the state to log these, right?
Yes, I think so. All of this will probably need to be revisited with the planned architecture refactor to have the Rust core more "in charge" of uploading. |
3dcad9c
to
d08c7c1
Compare
This now matches the behavior of glean-ac (logging from the uploader)