Hi Everybody,
How can I check gRPC status code from python client?
We have a gRPC service (written in c++) that returns Status(NOT_FOUND). However the client (written in python) times out. (ExpirationError, after timeout). How should I avoid the timeout and detect any, not OK status code?
On python side I've used the helloworld_pb2.early_adopter_create_Greeter_stub to create client stub.
Is it possible that python code still in early stage, and does not support checking status code? Or have I used wrong interface?
Thanks,
Marton