-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
googleapis/gapic-generator-typescript
#1149Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
- gRPC reads proto definitions and generates an object that, for each rpc in the proto definition, defines a method that would call that RPC for
- so if your proto has rpc SomeFunc(Request) returns (Response), and you pass this proto to gRPC, it will return an object (that we call a stub) that would have stub["someFunc"], note the camelCase
- When stubs are generated for methods that have an acronym in them, they get generated like such:
createOsPolicyAssignment, but the generated code looks for the method namecreateOSPolicyAssignment
We need to make sure we're looking for the right method name.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.