-
Notifications
You must be signed in to change notification settings - Fork 672
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
Minor cleanup for Web API plugins #5472
Conversation
@@ -54,9 +54,6 @@ type State struct { | |||
// level retries, just errors from hitting API, inside the sync loop | |||
SyncFailureCount int `json:"syncFailureCount,omitempty"` | |||
|
|||
// In creating the resource, this is the number of failures | |||
CreationFailureCount int `json:"creationFailureCount,omitempty"` |
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.
Creation failure is not increment/used
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #5472 +/- ##
==========================================
- Coverage 60.97% 60.97% -0.01%
==========================================
Files 793 793
Lines 51331 51331
==========================================
- Hits 31299 31298 -1
- Misses 17147 17148 +1
Partials 2885 2885
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Thank you!
Signed-off-by: Jason Parraga <[email protected]>
Signed-off-by: Jason Parraga <[email protected]>
5b76da3
to
7288aa8
Compare
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.
Thank you!
Signed-off-by: Jason Parraga <[email protected]>
This pull request just cleans up some confusing/unused field as well as a documentation fix for the Web API plugin contract.