def main(): print(Utils.print_title("package.json")) cent = Centinela(dbuser=pguser, dbpass=pgpass, dbhost=pghost) while True: check_incomplete() reportes = cent.get_open_reports() for reporte in reportes: thread = Thread(target=start, args=(reporte, )) thread.start() sleep(60)
def main(): print(Utils.print_title("package.json")) start()
def main(): print(Utils.print_title("package.json")) start(Utils.read_config("package.json"))