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