提交 348b87ba 编写于 作者: B barrierye

update code

上级 85c3b475
...@@ -390,8 +390,18 @@ class MultiLangClient(object): ...@@ -390,8 +390,18 @@ class MultiLangClient(object):
raise Exception("GClient only supports multi-model temporarily") raise Exception("GClient only supports multi-model temporarily")
self._parse_model_config(path) self._parse_model_config(path)
def connect(self, endpoint): def add_variant(self, tag, cluster, variant_weight):
self.channel_ = grpc.insecure_channel(endpoint[0]) #TODO # TODO
pass
def set_rpc_timeout_ms(self, rpc_timeout):
# TODO
pass
def connect(self, endpoints):
g_endpoint = [(endpoint.spilt(':')[0], endpoint.split(':')[1])
for endpoint in endpoints]
self.channel_ = grpc.insecure_channel(g_endpoint)
self.stub_ = multi_lang_general_model_service_pb2_grpc.MultiLangGeneralModelServiceStub( self.stub_ = multi_lang_general_model_service_pb2_grpc.MultiLangGeneralModelServiceStub(
self.channel_) self.channel_)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册