-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[DSIP-][Master] Add Continue_Other_Task_Chain FailureStrategy #16912
Labels
Comments
What is |
SbloodyS
changed the title
[DSIP-88][Master] Add Other_Continue FailureStrategy
[DSIP-][Master] Add Other_Continue FailureStrategy
Dec 24, 2024
The current naming of our strategies is confusing
|
Continue_Other_Task_Chain("One task failed will continue other running task chain"). |
topsli
changed the title
[DSIP-][Master] Add Other_Continue FailureStrategy
[DSIP-][Master] Add Continue_Other_Task_Chain FailureStrategy
Dec 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Search before asking
Motivation
Currently, the list of FailureStrategy only have END and CONTINUE. May be it should have another choice: Continue_Other_Task_Chain
/**
* 0 ending process when some tasks failed.
* 1 continue running when some tasks failed.
* 2 one task failed will continue other running task chain.
**/
END(0, "end"),
CONTINUE(1, "continue"),
Continue_Other_Task_Chain(2,"One task failed will continue other running task chain");
Design Detail
No response
Compatibility, Deprecation, and Migration Plan
No response
Test Plan
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: