优化创建节点同时创建文件夹,记录节点的ownRootNodeUuid
This commit is contained in:
@@ -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());
|
||||
SdmResponse response = pbsService.submitJob(submitJobReq, flowNode.getCreator().toString());
|
||||
if (isBatch) {
|
||||
// 批量
|
||||
if (response.getCode() == 200) {
|
||||
|
||||
@@ -12,12 +12,12 @@ import java.io.InputStreamReader;
|
||||
public class RunThread implements Runnable {
|
||||
|
||||
private final InputStream is;
|
||||
private final String idCode;
|
||||
private final Long idCode;
|
||||
private final String name;
|
||||
private final boolean isError;
|
||||
private final String runPath;
|
||||
|
||||
public RunThread(InputStream is, String idCode, String name, String runPath, boolean isError) {
|
||||
public RunThread(InputStream is, Long idCode, String name, String runPath, boolean isError) {
|
||||
this.is = is;
|
||||
this.idCode = idCode;
|
||||
this.name = name;
|
||||
|
||||
Reference in New Issue
Block a user