提交 f3f9c4fb 编写于 作者: W wangjiawei04

update profile

......@@ -631,7 +631,8 @@ class ThreadChannel(Queue.Queue):
self._cv.notify_all()
logging.debug(self._log("multi | {} get data succ!".format(op_name)))
return copy.deepcopy(resp) # reference, read only
# return resp # reference, read only
return copy.deepcopy(resp)
def stop(self):
#TODO
......@@ -989,7 +990,8 @@ class VirtualOp(Op):
channel.add_producer(op.name)
self._outputs.append(channel)
def _run_with_brpc(self, concurrency_idx, input_channel, output_channels):
def _run(self, concurrency_idx, input_channel, output_channels, client_type,
use_future):
op_info_prefix = "[{}|{}]".format(self.name, concurrency_idx)
log = self._get_log_func(op_info_prefix)
self._is_run = True
......
......@@ -631,7 +631,8 @@ class ThreadChannel(Queue.Queue):
self._cv.notify_all()
logging.debug(self._log("multi | {} get data succ!".format(op_name)))
return copy.deepcopy(resp) # reference, read only
# return resp # reference, read only
return copy.deepcopy(resp)
def stop(self):
#TODO
......@@ -989,7 +990,8 @@ class VirtualOp(Op):
channel.add_producer(op.name)
self._outputs.append(channel)
def _run_with_brpc(self, concurrency_idx, input_channel, output_channels):
def _run(self, concurrency_idx, input_channel, output_channels, client_type,
use_future):
op_info_prefix = "[{}|{}]".format(self.name, concurrency_idx)
log = self._get_log_func(op_info_prefix)
self._is_run = True
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册