Co-authored-by: Xiaowu Chen <five3@163.com>
This commit is contained in:
parent
2de6866475
commit
a981cc1a81
|
@ -66,7 +66,7 @@ public class MsThreadGroup extends MsTestElement {
|
|||
threadGroup.setDuration(0);
|
||||
threadGroup.setProperty(ThreadGroup.ON_SAMPLE_ERROR, ThreadGroup.ON_SAMPLE_ERROR_CONTINUE);
|
||||
threadGroup.setScheduler(false);
|
||||
if (onSampleError != null && !onSampleError) {
|
||||
if (onSampleError != null && onSampleError) { // onSampleError 为true 表示失败停止
|
||||
threadGroup.setProperty("ThreadGroup.on_sample_error", "stoptest");
|
||||
}
|
||||
threadGroup.setSamplerController(loopController);
|
||||
|
|
|
@ -158,7 +158,7 @@ public class TestPlanController {
|
|||
ApiRunConfigDTO api = new ApiRunConfigDTO();
|
||||
api.setMode(testplanRunRequest.getMode());
|
||||
api.setResourcePoolId(testplanRunRequest.getResourcePoolId());
|
||||
api.setOnSampleError(true);
|
||||
api.setOnSampleError(false); // OnSampleError 为false表示失败不停止,若设置为true会导致bug #4809
|
||||
api.setReportType("iddReport");
|
||||
String apiRunConfig = JSONObject.toJSONString(api);
|
||||
return testPlanService.run(testplanRunRequest.getTestPlanId(), testplanRunRequest.getProjectId(), testplanRunRequest.getUserId(), testplanRunRequest.getTriggerMode(), apiRunConfig);
|
||||
|
|
Loading…
Reference in New Issue