From 915e23597ae155fbd5e1c2198312cfde5d3d7877 Mon Sep 17 00:00:00 2001 From: "everywhere.z" Date: Thu, 26 Oct 2023 18:22:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4rollback=E4=B8=AD=E4=B8=8D?= =?UTF-8?q?=E5=BF=85=E8=A6=81=E7=9A=84monitor=E6=80=A7=E8=83=BD=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/yomahub/liteflow/core/NodeComponent.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/core/NodeComponent.java b/liteflow-core/src/main/java/com/yomahub/liteflow/core/NodeComponent.java index 2ecca94ca..55fe2e528 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/core/NodeComponent.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/core/NodeComponent.java @@ -178,11 +178,6 @@ public abstract class NodeComponent { // 往CmpStep中放入时间消耗信息 cmpStep.setRollbackTimeSpent(timeSpent); - // 性能统计 - if (ObjectUtil.isNotNull(monitorBus)) { - CompStatistics statistics = new CompStatistics(this.getClass().getSimpleName(), timeSpent); - monitorBus.addStatistics(statistics); - } } }