def setUpModule(): try: environment.topo_server().setup() setup_topology() # start mysql instance external to the test global __tablets setup_procs = [] for tablet in __tablets: setup_procs.append(tablet.init_mysql()) utils.wait_procs(setup_procs) create_db() start_tablets() utils.VtGate().start() except: tearDownModule() raise
def setUpModule(): global vtgate_server, vtgate_port logging.debug("in setUpModule") try: environment.topo_server().setup() setup_topology() # start mysql instance external to the test global __tablets setup_procs = [] for tablet in __tablets: setup_procs.append(tablet.init_mysql()) utils.wait_procs(setup_procs) create_db() start_tablets() vtgate_server, vtgate_port = utils.vtgate_start() except: tearDownModule() raise
def setUpModule(): global vtgate_server, vtgate_port logging.debug("in setUpModule") try: environment.topo_server().setup() setup_topology() # start mysql instance external to the test global __tablets setup_procs = [] for tablet in __tablets: setup_procs.append(tablet.init_mysql()) utils.wait_procs(setup_procs) create_db() start_tablets() vtgate_server, vtgate_port = utils.vtgate_start() # FIXME(shrutip): this should be removed once vtgate_cursor's # dependency on topology goes away. vtgate_client = zkocc.ZkOccConnection("localhost:%u" % vtgate_port, "test_nj", 30.0) topology.read_topology(vtgate_client) except: tearDownModule() raise