-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
动作stoptask会执行前任务的on error #499
Labels
bug
Something isn't working
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
经过测试,在pipeline中照如下写会造成这两个任务无限循环,推测是stoptask之后执行了on error
{
"测试A": {
"next": [
"测试B"
],
"post_wait_freezes": 0,
"interrupt": [],
"on_error": [
"测试A"
],
"focus": true,
"focus_tip": "测试A",
"focus_tip_color": "Red"
},
"测试B": {
"action": "StopTask",
"post_wait_freezes": 0,
"interrupt": [],
"on_error": [],
"focus": true,
"focus_tip": "测试B",
"focus_tip_color": "Red"
}
}
使用MFA测试如图
The text was updated successfully, but these errors were encountered: