627
627
_DEFAULT_TESTING_CLIENT_TIMEOUT = 60.0
629
630
class TestingSmartServer(TestingThreadingTCPServer, server.SmartTCPServer):
631
632
def __init__(self, server_address, request_handler_class,
632
633
backing_transport, root_client_path):
633
634
TestingThreadingTCPServer.__init__(self, server_address,
636
638
root_client_path, client_timeout=_DEFAULT_TESTING_CLIENT_TIMEOUT)