diff --git a/CI/scripts_utils.py b/CI/scripts_utils.py index af3bf5c5..46d3bedd 100644 --- a/CI/scripts_utils.py +++ b/CI/scripts_utils.py @@ -127,13 +127,13 @@ def dask_env_wrapper(): # else: os.environ[TILE_SIZE] = "auto" if use_dask(): - LOGGER.info("Using DASK threading by chunking the data") + LOGGER.info("Using Dask and creating Dask client.") with tempenv.TemporaryEnvironment( {"CLOUDPATHLIB_FORCE_OVERWRITE_FROM_CLOUD": "1"} ), dask.get_or_create_dask_client(): function() else: - LOGGER.info("No chunking will be done. Beware of memory overflow errors!") + LOGGER.info("**NOT** using Dask!") function() return dask_env_wrapper