You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dss-appconn/appconns/dss-workflow-appconn/src/main/java/com/webank/wedatasphere/dss/appconn/workflow/opertion/WorkflowRefCopyOperation.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ public RefJobContentResponseRef copyRef(ThirdlyRequestRef.CopyWitContextRequestR
Copy file name to clipboardExpand all lines: dss-framework/dss-framework-orchestrator-server/src/main/java/com/webank/wedatasphere/dss/orchestrator/server/entity/request/EncryptCopyOrchestratorRequest.java
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@ public class EncryptCopyOrchestratorRequest {
23
23
// 查看用户
24
24
privateStringaccessUser;
25
25
26
+
privateStringflowProxyUser;
27
+
26
28
publicLonggetWorkspaceId() {
27
29
returnworkspaceId;
28
30
}
@@ -88,6 +90,13 @@ public void setAccessUser(String accessUser) {
Copy file name to clipboardExpand all lines: dss-framework/dss-framework-orchestrator-server/src/main/java/com/webank/wedatasphere/dss/orchestrator/server/entity/vo/OrchestratorCopyVo.java
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ public class OrchestratorCopyVo implements Serializable {
Copy file name to clipboardExpand all lines: dss-framework/dss-framework-orchestrator-server/src/main/java/com/webank/wedatasphere/dss/orchestrator/server/job/OrchestratorCopyJob.java
Copy file name to clipboardExpand all lines: dss-framework/dss-framework-orchestrator-server/src/main/java/com/webank/wedatasphere/dss/orchestrator/server/restful/DSSFrameworkOrchestratorRestful.java
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -230,7 +230,7 @@ public Message copyOrchestrator(@RequestBody OrchestratorCopyRequest orchestrato
Copy file name to clipboardExpand all lines: dss-framework/dss-framework-orchestrator-server/src/main/java/com/webank/wedatasphere/dss/orchestrator/server/service/OrchestratorFrameworkService.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ public interface OrchestratorFrameworkService {
Copy file name to clipboardExpand all lines: dss-framework/dss-framework-orchestrator-server/src/main/java/com/webank/wedatasphere/dss/orchestrator/server/service/impl/OrchestratorFrameworkServiceImpl.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -408,7 +408,8 @@ public DSSOrchestratorVersion getLatestOrchestratorVersion(Long orchestratorId)
Copy file name to clipboardExpand all lines: dss-orchestrator/dss-orchestrator-common/src/main/java/com/webank/wedatasphere/dss/orchestrator/common/ref/OrchestratorRefConstant.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -63,4 +63,6 @@ public interface OrchestratorRefConstant {
Copy file name to clipboardExpand all lines: dss-orchestrator/orchestrators/dss-workflow/dss-workflow-common/src/main/java/com/webank/wedatasphere/dss/workflow/common/protocol/RequestCopyWorkflow.java
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ public class RequestCopyWorkflow {
38
38
39
39
privateList<String> enableNodeList;
40
40
41
+
privateStringflowProxyUser;
42
+
41
43
publicRequestCopyWorkflow(StringuserName,
42
44
Workspaceworkspace,
43
45
LongrootFlowId,
@@ -76,7 +78,8 @@ public RequestCopyWorkflow(String userName,
76
78
LongtargetProjectId,
77
79
StringnodeSuffix,
78
80
StringnewFlowName,
79
-
List<String> enableNodeList) {
81
+
List<String> enableNodeList,
82
+
StringflowProxyUser) {
80
83
81
84
this.userName = userName;
82
85
this.workspace = workspace;
@@ -90,6 +93,7 @@ public RequestCopyWorkflow(String userName,
90
93
this.nodeSuffix = nodeSuffix;
91
94
this.newFlowName = newFlowName;
92
95
this.enableNodeList = enableNodeList;
96
+
this.flowProxyUser = flowProxyUser;
93
97
94
98
}
95
99
@@ -188,4 +192,12 @@ public List<String> getEnableNodeList() {
Copy file name to clipboardExpand all lines: dss-orchestrator/orchestrators/dss-workflow/dss-workflow-server/src/main/java/com/webank/wedatasphere/dss/workflow/DefaultWorkFlowManager.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -164,10 +164,11 @@ public DSSFlow createWorkflow(String userName,
0 commit comments