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
Proto file snippet:-
syntax = "proto3"; package service.dtype1systems; option go_package = "test/sample";
service Dtype1systems { rpc Method1(exampleRequest) returns(response); } docker run -p 4770:4770 -p 4771:4771 -v /home/usr/mock-servers/protos:/proto -v /home/usr/mock-servers/stubs:/stub tkpd/gripmock --imports="/protobuf,/proto" --stub=/stub /proto/example.proto
/go/src/grpc/server.go:67:2: undefined: sample.Dtype1systems 2022/12/20 07:57:47 exit status 2
but when i am changing the service name to Dtype1Systems . Mock-server is working fine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Proto file snippet:-
syntax = "proto3";
package service.dtype1systems;
option go_package = "test/sample";
service Dtype1systems {
rpc Method1(exampleRequest) returns(response);
}
docker run -p 4770:4770 -p 4771:4771 -v /home/usr/mock-servers/protos:/proto -v /home/usr/mock-servers/stubs:/stub tkpd/gripmock --imports="/protobuf,/proto" --stub=/stub /proto/example.proto
/go/src/grpc/server.go:67:2: undefined: sample.Dtype1systems
2022/12/20 07:57:47 exit status 2
but when i am changing the service name to Dtype1Systems . Mock-server is working fine.
The text was updated successfully, but these errors were encountered: