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