ruanwenjun commented on code in PR #16327:
URL:
https://github.com/apache/dolphinscheduler/pull/16327#discussion_r1729079038
##########
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/engine/graph/AbstractSuccessorParser.java:
##########
@@ -15,19 +15,23 @@
* limitations under the License.
*/
-package org.apache.dolphinscheduler.server.master.event;
+package org.apache.dolphinscheduler.server.master.engine.graph;
-/**
- * This exception represent the exception can not recover, this happens when
the event is broken.
- * And when we get this exception, we will drop the event.
- */
-public class StateEventHandleError extends Exception {
+import org.apache.dolphinscheduler.dao.entity.TaskInstance;
+
+public abstract class AbstractSuccessorParser implements ISuccessorParser {
Review Comment:
I removed this class, this is replaced by
```java
/**
* Used to adjust the flow of tasks.
* <p> Only {@link ConditionLogicTask} and {@link SwitchLogicTask} need to
adjust the flow of tasks.
*/
@Slf4j
@Component
public class SuccessorFlowAdjuster {
}
```
which is used to control the flow of workflow and adjust the post tasks
which should be trigger or skip.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]