From 0a56df37fcd3d5ae862dc996067f06f7db7ef6a3 Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Wed, 14 Jul 2021 14:38:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E5=B7=B2=E7=BB=8F=E7=A6=81=E7=94=A8?= =?UTF-8?q?=E7=9A=84csvdataset?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/components/performance/test/model/ThreadGroup.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/business/components/performance/test/model/ThreadGroup.js b/frontend/src/business/components/performance/test/model/ThreadGroup.js index e161708c74..7c5172838d 100644 --- a/frontend/src/business/components/performance/test/model/ThreadGroup.js +++ b/frontend/src/business/components/performance/test/model/ThreadGroup.js @@ -33,6 +33,9 @@ export function findThreadGroup(jmxContent, handler) { let csvFiles = []; relateFiles.forEach(f => { + if (f.attributes.enabled === 'false') { + return; + } f.elements.forEach(e => { if (e.attributes.name === 'filename') { let filename = e.elements[0].text;