|
@@ -289,14 +289,15 @@ public class PipelineServiceImpl implements PipelineService {
|
|
|
Integer type = currentNode.getType();
|
|
|
String input = currentNode.getInput() == null ? "" : currentNode.getInput();
|
|
|
String reason = "处理失败";
|
|
|
- String result = null;
|
|
|
- try {
|
|
|
- // 执行action
|
|
|
- result = executeTaskStep(step, input, type);
|
|
|
- } catch (Exception e) {
|
|
|
- reason = e.getMessage();
|
|
|
- log.error("step execute error step = {}, reason = {}", e, JSON.toJSONString(step), reason);
|
|
|
- }
|
|
|
+// String result = null;
|
|
|
+// try {
|
|
|
+// // 执行action
|
|
|
+// result = executeTaskStep(step, input, type);
|
|
|
+// } catch (Exception e) {
|
|
|
+// reason = e.getMessage();
|
|
|
+// log.error("step execute error step = {}, reason = {}", e, JSON.toJSONString(step), reason);
|
|
|
+// }
|
|
|
+ String result = executeTaskStep(step, input, type);
|
|
|
if (Objects.isNull(currentNode.getChildren()) || currentNode.getChildren().isEmpty()) {
|
|
|
if (Objects.nonNull(result)) {
|
|
|
//异常不阻塞其他分支执行
|