-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
🌱 RuntimeSDK: Implement aggregateResponse for Runtime client #6581
🌱 RuntimeSDK: Implement aggregateResponse for Runtime client #6581
Conversation
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.
I removed the message and status aggregation as we're only using Successful responses for aggregation. At this point I think the main thing left over is testing for CallAllExtensions.
8781492
to
d520f8b
Compare
d520f8b
to
3237ef8
Compare
3237ef8
to
b580913
Compare
I added more unit tests and did a bit of cleanup. PR is now ready for review |
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.
LGTM overall.
@ykakarap Thx for the review, good findings. Should be fixed now. |
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.
/lgtm
93a57d0
to
dce7674
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.
/lgtm
@fabriziopandini Thx for the review, should be all fixed now. Q: Does it make a difference for you for "delta-reviewing" if I commit amend vs. push a separate commit for fixes? |
1b5950d
to
802f4c1
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.
/lgtm
/assign @killianmuldoon |
lgtm pending squash |
Signed-off-by: killianmuldoon <[email protected]>
802f4c1
to
6878983
Compare
Squashed |
@killianmuldoon: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/lgtm Thanks for taking this over @sbueringer 🙂 |
@killianmuldoon: you cannot LGTM your own PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Thx for implementing it :) /cc @fabriziopandini for approval |
/lgtm |
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.
/lgtm
Given lgtm's across the board + Fabrizio was only waiting for a squash /approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
I'm late to the party |
Signed-off-by: killianmuldoon [email protected]
Add aggregation logic to the runtime SDK client to correctly report results from CallAllExtensions.
Part of #6330