Skip to content

Commit

Permalink
fix: modifyOrchestratorMeta_修复工作流编辑bug1,处理IsDefaultReference 为空字符问题
Browse files Browse the repository at this point in the history
  • Loading branch information
SunPengWan committed Sep 18, 2024
1 parent 52ac15c commit 9a2c0f0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,11 @@ private static DSSOrchestratorInfo getDssOrchestratorInfo(OrchestratorMeta orche
dssOrchestratorInfo.setCreator(orchestratorMetaInfo.getCreator());
dssOrchestratorInfo.setProjectId(orchestratorMetaInfo.getProjectId());
dssOrchestratorInfo.setComment(orchestratorMetaInfo.getDescription());
dssOrchestratorInfo.setIsDefaultReference(orchestratorMetaInfo.getIsDefaultReference());
if(StringUtils.isEmpty(orchestratorMetaInfo.getIsDefaultReference())){
dssOrchestratorInfo.setIsDefaultReference(null);
}else{
dssOrchestratorInfo.setIsDefaultReference(orchestratorMetaInfo.getIsDefaultReference());
}
dssOrchestratorInfo.setType(dssOrchestratorRelation.getDSSOrchestratorName());
dssOrchestratorInfo.setAppConnName(dssOrchestratorRelation.getBindingAppConnName());
dssOrchestratorInfo.setSecondaryType(orchestratorMetaInfo.getOrchestratorWay());
Expand Down

0 comments on commit 9a2c0f0

Please sign in to comment.