Skip to content

Commit

Permalink
Fix runAfter specification failing to be parsed (kubeflow#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbutlerbb4 authored Jul 6, 2020
1 parent cfdc996 commit 81335e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/WorkflowParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default class WorkflowParser {
for (const condition of conditions)
edges.push(...this.checkParams(statusMap, pipelineParams, condition, taskId));

if (task['taskSpec']['runAfter']) {
if (task['runAfter']) {
task['runAfter'].forEach((parentTask: any) => {
if (
statusMap.get(parentTask) &&
Expand Down

0 comments on commit 81335e4

Please sign in to comment.