python-betterproto icon indicating copy to clipboard operation
python-betterproto copied to clipboard

Reflections don't work (I may know why)

Open BananaLoaf opened this issue 3 years ago • 8 comments

I use server reflection as defined in the documentation and I have a single service called helloworld.Greeter.

gRPC call list_services: "*" is processed fine and returns a single service helloworld.Greeter.

However, file_containing_symbol: "helloworld.Greeter" only returns an error not found

Throughout my own investigation I found that error can be traced to grpclib/reflection/_deprecated.py:L79 Where self._pool does not have any descriptors for helloworld.Greeter or any of its methods

I suspect that THIS is how the descriptors should be added in order for reflections to work with betterproto

BananaLoaf avatar Nov 24 '22 18:11 BananaLoaf

I have managed to fix reflections by using command poetry run python -m grpc_tools.protoc -I protos --python_out=package_name/grpc_python and importing everything that is in package_name/grpc_python to populate descriptors before starting the server.

However, paths in those files are broken and this solution is barely usable.

BananaLoaf avatar Nov 24 '22 18:11 BananaLoaf

I'm trying to do reflection via grpclib using better proto

is it working or any example I can follow?

DeoLeung avatar Sep 22 '23 03:09 DeoLeung

Have same issue

narma avatar Oct 06 '23 15:10 narma