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
In previous versions tasks in job result array were ordered similarly as input tasks but following #151 tasks in job result array are now ordered according to their run duration: if a task finishes before another one it will be put before it in the result array.
This can causes problem to some hooks like mergeJson, which rely on the task result order. We should probably introduce a new sortBy hook when a specific order needs to be enforced or reorder the result array the same way input tasks are.
The text was updated successfully, but these errors were encountered:
In previous versions tasks in job result array were ordered similarly as input tasks but following #151 tasks in job result array are now ordered according to their run duration: if a task finishes before another one it will be put before it in the result array.
This can causes problem to some hooks like
mergeJson
, which rely on the task result order. We should probably introduce a newsortBy
hook when a specific order needs to be enforced or reorder the result array the same way input tasks are.The text was updated successfully, but these errors were encountered: