Administrator
2023-08-15 20565813e730a68bed39b17b94361bd86807108f
huaxin_api/l2_client.py
@@ -521,10 +521,11 @@
            logging.exception(e)
def __receive_from_pipe_strategy(pipe):
def __receive_from_pipe_strategy(pipe_):
    while True:
        print("__receive_from_pipe_strategy")
        try:
            val = pipe.recv()
            val = pipe_.recv()
            if val:
                print("L2客户端接受到数据::", val)
                data = json.loads(val)