Skip to content
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

Reflection commands not working when we import proto files #302

Open
Rohith-Grandhi opened this issue Aug 29, 2023 · 0 comments
Open

Reflection commands not working when we import proto files #302

Rohith-Grandhi opened this issue Aug 29, 2023 · 0 comments
Labels
type: bug Something isn't working

Comments

@Rohith-Grandhi
Copy link
Collaborator

Rohith-Grandhi commented Aug 29, 2023

When I run the reflection command for the generated server using the following proto files, I am getting symbols not found error.

image

Proto content:

hello.proto:

syntax = "proto3";

package helloworld;

import "testName.proto";

// The greeting service definition.
service Greeter {
  // Sends a greeting
  rpc SayHello (HelloRequest) returns (HelloReply) {}
}

// The request message containing the user's name.
message HelloRequest {
  testName.stateName startName = 1;
}

// The response message containing the greetings
message HelloReply {
  string message = 1;
} 

testName.proto:

syntax = "proto3";

package testName;

message stateName{
  string name = 1;
}

AB#2501573

@Rohith-Grandhi Rohith-Grandhi added the type: bug Something isn't working label Aug 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant