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
A composed task definition of timestamp '*'->t1: timestamp 'FOO'->$END does not pass dataflow validation because it says task:$END is not a valid application.
In the DefaultTaskService class where we saveStandardTaskDefinition (Line 110) for a composed task we need to gate it with a if statement like:
- Updated to check task.name instead of task.taskName
- Updated to verify that taskNode.getName is not null before assessing if it contains $END
- resolves#4387
A composed task definition of
timestamp '*'->t1: timestamp 'FOO'->$END
does not pass dataflow validation because it says task:$END is not a valid application.In the DefaultTaskService class where we saveStandardTaskDefinition (Line 110) for a composed task we need to gate it with a if statement like:
This way $END is not treated like an app at task definition create time.
The text was updated successfully, but these errors were encountered: