You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously the DagError::TaskError type contained the task name, task ID, and the node-provided error string. The new equivalent of this error type appears to be GraphError::ExecutionFailed but it only contains a formatted string.
It would be more user friendly if it still contained node_name, node_id, and error as struct members and then have the Display implementation build the string instead so that our error handling can reliably get the actual node ID that failed.
The text was updated successfully, but these errors were encountered:
Previously the
DagError::TaskError
type contained the task name, task ID, and the node-provided error string. The new equivalent of this error type appears to beGraphError::ExecutionFailed
but it only contains a formatted string.It would be more user friendly if it still contained
node_name
,node_id
, anderror
as struct members and then have theDisplay
implementation build the string instead so that our error handling can reliably get the actual node ID that failed.The text was updated successfully, but these errors were encountered: