fix: 修复创建测试计划时重复提交,成功创建多个相同的计划
This commit is contained in:
parent
6d3b3ccfa4
commit
c0b4b813f3
|
@ -141,7 +141,7 @@ public class TestPlanService {
|
|||
}
|
||||
}
|
||||
|
||||
public List<TestPlan> getTestPlanByName(String name) {
|
||||
public synchronized List<TestPlan> getTestPlanByName(String name) {
|
||||
TestPlanExample example = new TestPlanExample();
|
||||
example.createCriteria().andWorkspaceIdEqualTo(SessionUtils.getCurrentWorkspaceId())
|
||||
.andNameEqualTo(name);
|
||||
|
|
Loading…
Reference in New Issue