-
Notifications
You must be signed in to change notification settings - Fork 113
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
go/worker/compute/executor: Minor fixes #5426
Conversation
6bee867
to
3d36519
Compare
Codecov Report
@@ Coverage Diff @@
## master #5426 +/- ##
==========================================
+ Coverage 66.41% 66.42% +0.01%
==========================================
Files 533 533
Lines 56351 56364 +13
==========================================
+ Hits 37424 37442 +18
- Misses 14513 14519 +6
+ Partials 4414 4403 -11
|
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.
Also don't forget to backport.
3d36519
to
62ebb4e
Compare
The periodic re-attestation happens every hour, while explicitly requested re-attestation takes place approximately every 1 to 2 hours. This results in both re-attestations occurring closely together. To avoid unnecessary re-attestation and re-registration, we extend the periodic re-attestation interval to encompass the worst-case scenario of explicit attestation.
When a node is not a member of the committee, events, commitments, and transactions accumulate in the channels. When the node gets re-elected, it must process these channels first, potentially resulting in delayed submission of its commitments or incorrect discrepancy detection.
62ebb4e
to
626172d
Compare
No description provided.