We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Whenever I add an import to the proto file, grpcc can't find any service. e.g. import "google/protobuf/field_mask.proto";
import "google/protobuf/field_mask.proto";
I haven't tested or debugged it any further but my guess is that it only checks the imported proto definition as it doesn't have any services in it.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
I guess, grpcc can't handle enums outside of messages.
message Foo { enum Status { OK = 0; ERROR = 1; } Status status = 1; }
works fine. But
enum Status { OK = 0; ERROR = 1; } message Foo { Status status = 1; }
gives Unable to find any service in proto file.
Unable to find any service in proto file
Still happens in grpcc 1.1.3
1.1.3
No branches or pull requests
Whenever I add an import to the proto file, grpcc can't find any service.
e.g.
import "google/protobuf/field_mask.proto";
I haven't tested or debugged it any further but my guess is that it only checks the imported proto definition as it doesn't have any services in it.
The text was updated successfully, but these errors were encountered: