def test_start_service(self): #start_service() works for semi-reasonable inputs args = (TaxonService, taxon_thrift_service, logging.getLogger()) # make sure reactor loop stops immediately after it starts internet.reactor.callWhenRunning(sc.stop_service) # start the reactor loop sc.start_service(*args)
def start_service(**kw): return service_core.start_service(AssemblyService, thrift_service, _log, **kw)
def start_service(**kw): return service_core.start_service(GenomeAnnotationService, thrift_service, _log, **kw)
def start_service(services=None, host='localhost', port=9101): return service_core.start_service(TaxonService, thrift_service, _log, services=services, host=host, port=port)
def start_service(**kw): return service_core.start_service(TaxonService, thrift_service, _log, **kw)
def start_service(services=None, host='localhost', port=9103): return service_core.start_service(GenomeAnnotationService, thrift_service, _log, services=services, host=host, port=port)
def start_service(services=None, host='localhost', port=9102): return service_core.start_service(AssemblyService, thrift_service, _log, services=services, host=host, port=port)