-
Notifications
You must be signed in to change notification settings - Fork 6
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
Update fetch and generate scripts for reflection #20
Conversation
Motivation: To add the reflection service we need to fetch it and generate the appropriate code. Modifications: - Update proto fetching script to get v1 reflection service - Update proto generating script to generate reflection service code and messages - Also add protos used in tests for the reflection service and generate their descriptor sets Result: Generated code is in place
859749a
to
6bd9fe8
Compare
dev/protos/generate.sh
Outdated
# Messages were accidentally leaked into public API, they shouldn't be but we | ||
# can't undo that change until the next major version. |
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.
Does this still apply?
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.
Good catch, this was copy-pasta!
dev/protos/generate.sh
Outdated
# Messages were accidentally leaked into public API, they shouldn't be but we | ||
# can't undo that change until the next major version. |
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.
Good catch, this was copy-pasta!
Co-authored-by: Gus Cairo <me@gustavocairo.com>
Motivation:
To add the reflection service we need to fetch it and generate the appropriate code.
Modifications:
Result:
Generated code is in place