获取资源池校验

This commit is contained in:
Captain.B 2020-05-07 11:56:35 +08:00
parent 1d6662e0fa
commit 028deeae71
1 changed files with 4 additions and 0 deletions

View File

@ -189,6 +189,10 @@ public class TestResourcePoolService {
List<TestResourcePoolDTO> testResourcePools = listResourcePools(request);
// 重新校验 pool
for (TestResourcePoolDTO pool : testResourcePools) {
// 手动设置成无效的, 排除
if (INVALID.name().equals(pool.getStatus())) {
continue;
}
try {
updateTestResourcePool(pool);
} catch (MSException e) {