diff --git a/src/openeo_gfmap/fetching/generic.py b/src/openeo_gfmap/fetching/generic.py index ee0b430..46edb74 100644 --- a/src/openeo_gfmap/fetching/generic.py +++ b/src/openeo_gfmap/fetching/generic.py @@ -55,7 +55,7 @@ def generic_default_fetcher( temporal_extent is not None ): _log.warning( - "User set-up non None temporal extent for %s collection. Ignoring it.", + "Ignoring the temporal extent provided by the user as the collection %s is known to be untemporal.", collection_name, ) temporal_extent = None diff --git a/src/openeo_gfmap/manager/job_manager.py b/src/openeo_gfmap/manager/job_manager.py index b9dd859..986bbf4 100644 --- a/src/openeo_gfmap/manager/job_manager.py +++ b/src/openeo_gfmap/manager/job_manager.py @@ -21,7 +21,7 @@ _stac_lock = Lock() -def retry_on_exception(max_retries: int, delay_s: float = 180.0): +def retry_on_exception(max_retries: int, delay_s: int = 180): """Decorator to retry a function if an exception occurs. Used for post-job actions that can crash due to internal backend issues. Restarting the action usually helps to solve the issue.