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: dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ProcessDefinitionController.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -518,7 +518,7 @@ public Result viewTree(@ApiIgnore @RequestAttribute(value = Constants.SESSION_US
518
518
@ApiParam(name = "projectCode", value = "PROJECT_CODE", required = true) @PathVariablelongprojectCode,
519
519
@PathVariable("code") longcode,
520
520
@RequestParam("limit") Integerlimit) {
521
-
Map<String, Object> result = processDefinitionService.viewTree(code, limit);
521
+
Map<String, Object> result = processDefinitionService.viewTree(projectCode, code, limit);
Copy file name to clipboardExpand all lines: dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/controller/ProcessInstanceController.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -344,8 +344,9 @@ public Result queryParentInstanceBySubId(@ApiIgnore @RequestAttribute(value = Co
Copy file name to clipboardExpand all lines: dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessDefinitionServiceImpl.java
+26-13Lines changed: 26 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -448,7 +448,7 @@ public Map<String, Object> queryProcessDefinitionByCode(User loginUser, long pro
Copy file name to clipboardExpand all lines: dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/ProcessInstanceServiceImpl.java
Copy file name to clipboardExpand all lines: dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/ProcessDefinitionControllerTest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -340,7 +340,7 @@ public void testViewTree() throws Exception {
0 commit comments