diff options
Diffstat (limited to 'module/remote/ThriftBackend.py')
-rw-r--r-- | module/remote/ThriftBackend.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/module/remote/ThriftBackend.py b/module/remote/ThriftBackend.py index ac7d1f857..1a56b0435 100644 --- a/module/remote/ThriftBackend.py +++ b/module/remote/ThriftBackend.py @@ -24,6 +24,7 @@ from thriftbackend.Processor import Processor from thriftbackend.Protocol import ProtocolFactory from thriftbackend.Socket import ServerSocket from thriftbackend.Transport import TransportFactory +#from thriftbackend.Transport import TransportFactoryCompressed from thrift.server import TServer @@ -43,6 +44,8 @@ class ThriftBackend(BackendBase): transport = ServerSocket(port, host, key, cert) + +# tfactory = TransportFactoryCompressed() tfactory = TransportFactory() pfactory = ProtocolFactory() |