-
Notifications
You must be signed in to change notification settings - Fork 671
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
add execution mode to ArrayNode proto #5512
Conversation
Signed-off-by: Paul Dittamo <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #5512 +/- ##
===========================================
- Coverage 60.98% 35.90% -25.09%
===========================================
Files 796 1301 +505
Lines 51676 109419 +57743
===========================================
+ Hits 31515 39287 +7772
- Misses 17261 66035 +48774
- Partials 2900 4097 +1197
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Paul Dittamo <[email protected]>
This reverts commit f958241. Signed-off-by: Paul Dittamo <[email protected]>
Signed-off-by: Paul Dittamo <[email protected]>
Signed-off-by: Paul Dittamo <[email protected]>
|
||
// execution_version determines the execution path for ArrayNode. The default, 0, will | ||
// utilize the minimized storage implementation. 1 will utilize full subNode status storage. | ||
uint32 execution_version = 5; |
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.
Unsure if execution_mode
sounds better? Then it should probably be an enum. Either way, whatever you decide is good.
Signed-off-by: Paul Dittamo <[email protected]>
* add execution_version to array node idl Signed-off-by: Paul Dittamo <[email protected]> * make execution_version for array node spec optional Signed-off-by: Paul Dittamo <[email protected]> * Revert "make execution_version for array node spec optional" This reverts commit f958241. Signed-off-by: Paul Dittamo <[email protected]> * update comment Signed-off-by: Paul Dittamo <[email protected]> * use enum instead of int for execution mode for array node Signed-off-by: Paul Dittamo <[email protected]> --------- Signed-off-by: Paul Dittamo <[email protected]> Signed-off-by: Vladyslav Libov <[email protected]>
Why are the changes needed?
Support selecting toggling ArrayNode execution/storage and retain backwards compatibility.
What changes were proposed in this pull request?
Add execution_version to ArrayNode proto
How was this patch tested?
Setup process
Screenshots
Check all the applicable boxes
Related PRs
Docs link