|
|
|
@ -402,7 +402,7 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
|
boolean success = false;
|
|
|
|
|
if(isLastLevel()) {
|
|
|
|
|
success = analyMiddle("",json,files,true,true);
|
|
|
|
|
syncAddTaskStatus(json,2,success,startTime,true);
|
|
|
|
|
syncAddTaskStatus(json,3,success,startTime,true);
|
|
|
|
|
if(!success) {
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.error(9000, "解析失败");
|
|
|
|
@ -413,11 +413,11 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
|
String host = getNextHost();
|
|
|
|
|
String result = relay(request.getHeader("reqNo"),content,saveFiles,host);
|
|
|
|
|
if(IDCUtils.isJson(result)) {
|
|
|
|
|
syncAddTaskStatus(json,1,true,startTime,true);
|
|
|
|
|
syncAddTaskStatus(json,2,true,startTime,true);
|
|
|
|
|
BaseResponse object = JSON.parseObject(result,BaseResponse.class);
|
|
|
|
|
return object;
|
|
|
|
|
} else {
|
|
|
|
|
syncAddTaskStatus(json,1,false,startTime,false);
|
|
|
|
|
syncAddTaskStatus(json,2,false,startTime,false);
|
|
|
|
|
return ResultVOUtils.error(9000, "转发失败");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|