fix(接口自动化): 修复历史数据升级条件控制器丢失问题

This commit is contained in:
fit2-zhao 2021-03-22 14:11:40 +08:00
parent 4a12fd797b
commit ec6a019b62
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ public class HistoricalDataUpgradeService {
for (Request request : oldScenario.getRequests()) {
// 条件控制器
MsIfController ifController = null;
if (request.getController() != null && StringUtils.isNotEmpty(request.getController().getValue())
if (request.getController() != null && StringUtils.isNotEmpty(request.getController().getOperator())
&& StringUtils.isNotEmpty(request.getController().getVariable())) {
ifController = new MsIfController();
BeanUtils.copyBean(ifController, request.getController());

@ -1 +1 @@
Subproject commit 041927e429a425c72453dc4a80272f05515a1f41
Subproject commit 3dbd5a3d7ec96a10e11d817cdec25832986af1d2