使用google/protobuf/empty.proto调用python grpc方法时出现TypeError,无参数

2024-03-29 09:38:41 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个这样的原型方案:

   import "google/protobuf/empty.proto";
   ...

   service NodeInfoService {
   rpc NodeConfig (google.protobuf.Empty) returns (NodeConfigResponse);
}

使用grpc_工具,我得到了一些类,现在,当我试图从py客户端发送请求时,但是在“stub.NodeConfig()”调用中捕捉到了错误。 即使我像“stub.NodeConfig({})”或“stub.NodeConfig(“”)”那样调用它,我也有相同的类型错误。客户机完整代码:

import grpc
import logging
from util import node_info_service_pb2_grpc
from util import node_info_service_pb2

def run():
    with grpc.insecure_channel('ip:port') as channel:
        stub = node_info_service_pb2_grpc.NodeInfoServiceStub(channel)
        response = stub.NodeConfig(node_info_service_pb2.google_dot_protobuf_dot_empty__pb2.Empty)
    print("Echo client received: " + response.message)


if __name__ == '__main__':
    logging.basicConfig()
    run()

错误

ERROR:grpc._common:Exception serializing message!
Traceback (most recent call last):
  File "/Users/user/p/p/venv/lib/python3.8/site-packages/grpc/_common.py", line 86, in _transform
    return transformer(message)
TypeError: descriptor 'SerializeToString' for 'google.protobuf.pyext._message.CMessage' objects doesn't apply to a 'GeneratedProtocolMessageType' object
Traceback (most recent call last):
  File "/Users/user/p/scripts/grpc/protobuf/client.py", line 15, in <module>
    run()
  File "/Users/user/p/scripts/grpc/protobuf/client.py", line 9, in run
    response = stub.NodeConfig(node_info_service_pb2.google_dot_protobuf_dot_empty__pb2.Empty)
  File "/Users/user/p/p/venv/lib/python3.8/site-packages/grpc/_channel.py", line 921, in __call__
    state, call, = self._blocking(request, timeout, metadata, credentials,
  File "/Users/user/p/p/venv/lib/python3.8/site-packages/grpc/_channel.py", line 901, in _blocking
    raise rendezvous  # pylint: disable-msg=raising-bad-type
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
    status = StatusCode.INTERNAL
    details = "Exception serializing request!"
    debug_error_string = "None"

Tags: pyimportinfonodegrpcservicegooglechannel