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
Validation for this workflow fails, since decode-pica expects String but catch-object-exception declares that it produces Object.
I'm not sure how to approach this. Should this be solved by more advanced validation (look at the previous command or something), or would it be more appropriate to change something about the annotations (since by their annotations catch-object-exception and decode-pica are not compatible)?
In some workflows, the
@Inand@Outannotations do no correspond to the actual types, e.g.:as-lines | // produces
Stringcatch-object-exception | // consumes
T, producesT-- but@OutsaysObjectdecode-pica | // consumes
StringValidation for this workflow fails, since
decode-picaexpectsStringbutcatch-object-exceptiondeclares that it producesObject.I'm not sure how to approach this. Should this be solved by more advanced validation (look at the previous command or something), or would it be more appropriate to change something about the annotations (since by their annotations
catch-object-exceptionanddecode-picaare not compatible)?