-
Notifications
You must be signed in to change notification settings - Fork 357
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
fix: performance errors when listing pods #10199
base: release-0.35.0
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## release-0.35.0 #10199 +/- ##
===================================================
- Coverage 54.00% 43.31% -10.70%
===================================================
Files 1259 174 -1085
Lines 155373 18072 -137301
Branches 3498 0 -3498
===================================================
- Hits 83916 7828 -76088
+ Misses 71311 10244 -61067
+ Partials 146 0 -146
Flags with carried forward coverage won't be shown. Click here to find out more. |
f25211a
to
0316375
Compare
0316375
to
21daf95
Compare
return nil, err | ||
} | ||
c.QPS = 100 | ||
c.Burst = 100 | ||
return rest.InClusterConfig() |
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.
Shouldn't this return c, err
?
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 was ruled out as a viable solution before, I was testing solutions for a working fallback on a diff branch and I think i accidentally pushed this change here, I'll get rid of this
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.
but yea it woudlve had to be return c, err
Ticket
CM-594
Description
fix performance errors when listing pods
Test Plan
CI passes (automated testing)
I'll also add a manual test plan for this
Checklist
docs/release-notes/
See Release Note for details.