-
Notifications
You must be signed in to change notification settings - Fork 115
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/executor: cache of last seen runtime transactions #3279
Conversation
bb6cf38
to
89d75e6
Compare
Codecov Report
@@ Coverage Diff @@
## master #3279 +/- ##
==========================================
+ Coverage 65.33% 65.43% +0.10%
==========================================
Files 371 371
Lines 32936 32986 +50
==========================================
+ Hits 21519 21586 +67
+ Misses 8236 8228 -8
+ Partials 3181 3172 -9
Continue to review full report at Codecov.
|
89d75e6
to
7abed17
Compare
961277a
to
77d7258
Compare
batchProcessingTime.With(n.getMetricLabels()).Observe(time.Since(state.batchStartTime).Seconds()) | ||
func() { | ||
defer n.transitionLocked(StateWaitingForBatch{}) | ||
// A new block means the round has been finalized. |
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.
Empty line above.
) (*Node, error) { | ||
var err error |
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 is this needed, isn't err
defined when NewRuntimeHostNode
is called below?
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.
You are right, thx 👍
77d7258
to
60efa0d
Compare
Closes: #3274