Skip to content

Commit

Permalink
Implemented PR changes requests
Browse files Browse the repository at this point in the history
  • Loading branch information
GriffinBabe committed Sep 2, 2024
1 parent dc44681 commit bec9976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/openeo_gfmap/fetching/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/openeo_gfmap/manager/job_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit bec9976

Please sign in to comment.