engigu
engigu
用完整xpath试试,遇到过一样的问题
```python class TMultiplexedThriftClient(connection_pool.ThriftClient): server_name = '' @classmethod def get_protoco_factory(self): # from thrift.protocol.TMultiplexedProtocol import TMultiplexedProtocol def tmpl(transport): return TMultiplexedProtocol(TBinaryProtocol.TBinaryProtocol(transport), self.server_name) return tmpl @classmethod def get_transport_factory(self): # from thrift.transport import TTransport return...
试下这个 https://zhuanlan.zhihu.com/p/679115466