-
Notifications
You must be signed in to change notification settings - Fork 53
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
feat: get gRPC descriptor via server reflection #210
Conversation
Signed-off-by: Ink33 <Ink33@smlk.org>
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 left a few comments. I don't block this PR. You can do it in this PR or not, it's your choice.
By the way, you can remove or comment the following line if you want to depress the non-related CI errors. api-testing/.github/workflows/build.yaml Line 52 in c582610
|
Signed-off-by: Ink33 <Ink33@smlk.org>
Signed-off-by: Ink33 <Ink33@smlk.org>
e7aa12c
to
fd91104
Compare
but ci is still angry Signed-off-by: Ink33 <Ink33@smlk.org>
fd91104
to
0c7d7c7
Compare
Kudos, SonarCloud Quality Gate passed!
|
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.
Awesome work!
sudo atest service status | ||
|
||
atest convert -p .github/testing/core.yaml --converter jmeter -t sample.jmx | ||
- name: Report API Test | ||
uses: harupy/comment-on-pr@c0522c44600040927a120b9309b531e3cb6f8d48 | ||
uses: thollander/actions-comment-pull-request@v2 |
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 better and maintained well.
Breaking Change
The format of gRPC api name has been changed form
service.method
to/package.service/method
.For detail, see
sample/grpc-sample.yaml
.Now we can set
spec.grpc.serverReflection: true
to enable getting descriptor form gRPC server which has registered as a reflection server.related #160