-
Notifications
You must be signed in to change notification settings - Fork 185
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
[Storage] Refactor computation result status storage #7084
[Storage] Refactor computation result status storage #7084
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #7084 +/- ##
==========================================
+ Coverage 41.23% 41.25% +0.02%
==========================================
Files 2155 2155
Lines 189329 189323 -6
==========================================
+ Hits 78067 78111 +44
+ Misses 104760 104700 -60
- Partials 6502 6512 +10
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -82,7 +82,6 @@ const ( | |||
// code for ComputationResult upload status storage | |||
// NOTE: for now only GCP uploader is supported. When other uploader (AWS e.g.) needs to | |||
// be supported, we will need to define new code. | |||
codeComputationResults = 66 |
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.
should this be deprecated instead of removed?
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.
This is now an unused variable after the refactor. The same variable is now defined in storage/operation/prefix.go , that's why I had to remove it.
@@ -82,7 +82,6 @@ const ( | |||
// code for ComputationResult upload status storage | |||
// NOTE: for now only GCP uploader is supported. When other uploader (AWS e.g.) needs to | |||
// be supported, we will need to define new code. | |||
codeComputationResults = 66 |
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.
how about
_ = 66 // used by ComputationResults in storage/operation
…status-storage [Storage] Refactor computation result status storage
Working towards #6515
Refactor computation result status storage