添加仿真流程模版库
This commit is contained in:
@@ -60,7 +60,7 @@ public class SyncPbsTaskResult {
|
||||
if (!locked) {
|
||||
continue;
|
||||
}
|
||||
String jobNumber = flowNode.getCreator().toString();
|
||||
String jobNumber = String.valueOf(flowNode.getCreator());
|
||||
List<PbsTask> pbsTasks = pbsMapper.getPbsTaskByFlowNodeId(flowNodeId);
|
||||
boolean isSyncFinish = true;
|
||||
for (PbsTask pbsTask : pbsTasks) {
|
||||
|
||||
@@ -157,7 +157,7 @@ public class ExecuteFLowNodeThread implements Runnable {
|
||||
if (uploadSuccess) {
|
||||
PbsService pbsService = (PbsService) SpringUtils.getBean("pbsServiceImpl");
|
||||
log.info("flowNode:{}开始提交计算:{}", flowNode.getId(), JSONObject.toJSONString(submitJobReq));
|
||||
SdmResponse response = pbsService.submitJob(submitJobReq, flowNode.getCreator().toString());
|
||||
SdmResponse response = pbsService.submitJob(submitJobReq, String.valueOf(flowNode.getCreator()));
|
||||
if (isBatch) {
|
||||
// 批量
|
||||
if (response.getCode() == 200) {
|
||||
|
||||
Reference in New Issue
Block a user