Skip to content

Commit 5b6e9fc

Browse files
committed
improve log message to avoid hiding the actual error
#428
1 parent 35a0b9f commit 5b6e9fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openeo_driver/ProcessGraphDeserializer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1970,7 +1970,7 @@ def apply_process(process_id: str, args: dict, namespace: Union[str, None], env:
19701970
detail = f"{e!r}"
19711971
if isinstance(errorsummary,ErrorSummary):
19721972
detail = errorsummary.summary
1973-
raise OpenEOApiException(f"Unexpected error during {process_id!r} with {args!r}: {detail}") from e
1973+
raise OpenEOApiException(f"Unexpected error during {process_id!r}: {detail}. The process had these arguments: {args!r} ") from e
19741974

19751975
if namespace in ["user", None]:
19761976
user = env.get("user")

0 commit comments

Comments
 (0)