You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A protocol message with an underscore will not be translated correctly into Ruby. They're translated into constants, and constants with a leading underscore are private. They try to account for this by prepending PB_, but they still try to reference it without the prefix. 😮💨 🌴
For example, message _GetResponse will create PB__GetResponse but the rest of the generated code will still try to reference _GetResponse.
`grpc_tools_ruby_protoc --proto_path=../client_protos/proto/ --ruby_out=./lib --grpc_out=./lib cacheclient.proto controlclient.proto`
These are broken and will be patched. See #12.
A protocol message with an underscore will not be translated correctly into Ruby. They're translated into constants, and constants with a leading underscore are private. They try to account for this by prepending
PB_
, but they still try to reference it without the prefix. 😮💨 🌴For example,
message _GetResponse
will createPB__GetResponse
but the rest of the generated code will still try to reference_GetResponse
.The text was updated successfully, but these errors were encountered: