def update_data(timeout=3): """Download and unpack the latest data from the build server. :param float timeout: Number of seconds that need to pass until a timeout occurs. """ download_latest_data(timeout) if SP_DATA_PATH.isdir(): update_logger.log_debug('Removing {} ...'.format(SP_DATA_PATH)) SP_DATA_PATH.rmtree() unpack_data()
def update_data(timeout=DEFAULT_TIMEOUT): """Download and unpack the latest data from the build server. Old data gets deleted before unpacking. :param float timeout: Number of seconds that need to pass until a timeout occurs. """ _download_latest_data(timeout) if SP_DATA_PATH.isdir(): update_logger.log_debug('Removing {} ...'.format(SP_DATA_PATH)) SP_DATA_PATH.rmtree() _unpack_data(DATA_PATH)
def update_data(timeout=DEFAULT_TIMEOUT): """Download and unpack the latest data from the build server. Old data gets deleted before unpacking. :param float timeout: Number of seconds that need to pass until a timeout occurs. """ _download_latest_data(timeout) if SP_DATA_PATH.isdir(): update_logger.log_debug('Removing {} ...'.format(SP_DATA_PATH)) SP_DATA_PATH.rmtree() _unpack_data()