浏览代码

[Hotfix] Made the Pipe of the grpc communicator an instance property

/hotfix-v0.9.2a
vincentpierre 6 年前
当前提交
c104d31d
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 3
      python/unityagents/rpc_communicator.py

3
python/unityagents/rpc_communicator.py


class UnityToExternalServicerImplementation(UnityToExternalServicer):
parent_conn, child_conn = Pipe()
def __init__(self):
self.parent_conn, self.child_conn = Pipe()
def Initialize(self, request, context):
self.child_conn.send(request)

正在加载...
取消
保存