fix: 修复 Thread Iterations Limit 为1的bug

This commit is contained in:
Captain.B 2020-07-29 10:40:18 +08:00
parent f21790e089
commit 81ce9fab91
1 changed files with 2 additions and 1 deletions

View File

@ -751,7 +751,8 @@ public class JmeterDocumentParser implements DocumentParser {
threadGroup.appendChild(createStringProp(document, "Steps", "2"));
threadGroup.appendChild(createStringProp(document, "Hold", String.valueOf(realHold)));
threadGroup.appendChild(createStringProp(document, "LogFilename", ""));
threadGroup.appendChild(createStringProp(document, "Iterations", "1"));
// bzm - Concurrency Thread Group "Thread Iterations Limit:" 设置为空
// threadGroup.appendChild(createStringProp(document, "Iterations", "1"));
threadGroup.appendChild(createStringProp(document, "Unit", "M"));
}