complete_on_downloads for task block (#403)

This commit is contained in:
Kerem Yilmaz 2024-06-02 23:24:30 -07:00 committed by GitHub
parent 343937e12c
commit f1d5a3a687
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 118 additions and 30 deletions

View file

@ -217,7 +217,7 @@ class WorkflowRunContext:
self, parameter: OutputParameter, value: dict[str, Any] | list | str | None
) -> None:
if parameter.key in self.values:
LOG.error(f"Output parameter {parameter.output_parameter_id} already has a registered value")
LOG.warning(f"Output parameter {parameter.output_parameter_id} already has a registered value")
return
self.values[parameter.key] = value