Skip to content

Commit

Permalink
fix(controller): tune step trigger condition (#1047)
Browse files Browse the repository at this point in the history
tune step trigger condition

Co-authored-by: gaoxinxing <15931259256@163.com>
  • Loading branch information
goldenxinxing and gaoxinxing authored Aug 29, 2022
1 parent dcf7e30 commit c66a752
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public void triggerNextStep(Step pplStep) {
}

public boolean applyTo(JobType jobType, String stepName) {
return jobType == JobType.EVALUATION && JobSpliteratorEvaluation.STEP_NAMES[0].equals(stepName);
return true;
}
}

0 comments on commit c66a752

Please sign in to comment.