This commit is contained in:
fit2-zhao 2020-11-30 16:03:54 +08:00
commit 9a6f2518fc
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ public class JMeterService {
Object scriptWrapper = SaveService.loadElement(is);
HashTree testPlan = getHashTree(scriptWrapper);
JMeterVars.addJSR223PostProcessor(testPlan);
addBackendListener(testId, debugReportId, ApiRunMode.DEBUG.name(), testPlan);
String runMode = StringUtils.isBlank(debugReportId) ? ApiRunMode.RUN.name() : ApiRunMode.DEBUG.name();
addBackendListener(testId, debugReportId, runMode, testPlan);
LocalRunner runner = new LocalRunner(testPlan);
runner.run();
} catch (Exception e) {