我正在使用Thrift编写ruby客户端,但是找不到任何可用的选项来设置RPC超时。我正在使用默认的节俭宝石,版本为0.10.0
我的客户代码如下:
t_http_client_transport = Thrift::HTTPClientTransport.new(BASE_URI + API_END_POINT)
t_json_protocol = Thrift::JsonProtocol.new(t_http_client_transport)
t_ordering_service_client = TOrderingService::Client.new(t_json_protocol)
t_http_client_transport.open()
我在python客户端中找到了类似的选项,但是我找不到ruby的任何选项。