-
Notifications
You must be signed in to change notification settings - Fork 10
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
Do not update Commit.notified
#860
Conversation
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## main #860 +/- ##
==========================================
- Coverage 97.97% 97.96% -0.02%
==========================================
Files 442 442
Lines 35672 35641 -31
==========================================
- Hits 34949 34915 -34
- Misses 723 726 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAttention: Patch coverage is ✅ All tests successful. No failed tests found.
@@ Coverage Diff @@
## main #860 +/- ##
==========================================
- Coverage 97.97% 97.96% -0.02%
==========================================
Files 442 442
Lines 35672 35641 -31
==========================================
- Hits 34949 34915 -34
- Misses 723 726 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
@@ Coverage Diff @@
## main #860 +/- ##
==========================================
- Coverage 97.97% 97.96% -0.02%
==========================================
Files 442 442
Lines 35672 35641 -31
==========================================
- Hits 34949 34915 -34
- Misses 723 726 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #860 +/- ##
==========================================
- Coverage 97.97% 97.96% -0.02%
==========================================
Files 442 442
Lines 35672 35641 -31
==========================================
- Hits 34949 34915 -34
- Misses 723 726 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
aebfd73
to
3402d59
Compare
This field is constantly being updated/touched in both `UploadFinisher` and `Notify`. But I couldn’t find any piece of code that actually reads this field across the whole codebase.
3402d59
to
134feb9
Compare
This already happens as part of `{PreProcess,}Upload`, so it is not needed to set this field once again.
134feb9
to
eb9a68f
Compare
This field is constantly being updated/touched in both
UploadFinisher
andNotify
.But I couldn’t find any piece of code that actually reads this field across the whole codebase.
Moves and debounces the update to
Repository.updatestamp
, fixes https://github.com/codecov/internal-issues/issues/1043Stops setting
Commit.pullid
inUploadFinisher
.This already happens as part of
{PreProcess,}Upload
, so it is not needed to set this field once again.This also cleans up the code quite a bit.
Part of codecov/engineering-team#2824