-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[Block Executor] Follow up fix-ups #12468
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@@ -81,13 +81,13 @@ pub enum ExecutionTaskType { | |||
|
|||
/// A holder for potential task returned from the Scheduler. ExecutionTask and ValidationTask | |||
/// each contain a version of transaction that must be executed or validated, respectively. | |||
/// NoTask holds no task (similar None if we wrapped tasks in Option), and Done implies that | |||
/// Retry holds no task (similar None if we wrapped tasks in Option), and Done implies that |
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.
Nit: these explanations can go together with the enum variants, then easier to keep comments up to date?
/// Holds no task (similar None if we wrapped tasks in Option).
Retry,
/// Implies that there are no more tasks and the scheduler is done.
Done,
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #12468 +/- ##
=========================================
- Coverage 70.3% 69.9% -0.4%
=========================================
Files 2269 2269
Lines 428002 428006 +4
=========================================
- Hits 300940 299416 -1524
- Misses 127062 128590 +1528 ☔ View full report in Codecov by Sentry. |
e2b3730
to
141dc2e
Compare
141dc2e
to
7466818
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ Forge suite
|
✅ Forge suite
|
A follow-up for recent changes to clean up some things in the scheduler and executor.