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-orchestrator/orchestrators/dss-workflow/dss-flow-execution-server/src/main/scala/com/webank/wedatasphere/dss/flow/execution/entrance/job/FlowEntranceJob.scala
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -160,7 +160,8 @@ class FlowEntranceJob(persistManager: PersistenceManager) extends EntranceExecut
160
160
}
161
161
}
162
162
}
163
-
info(s"Collected output variables from node($nodeName): ${outputVariables.keySet().mkString(",")}")
163
+
info(s"Collected output variables from node($nodeName): ${outputVariables.toSeq.sortBy(_._1).map { case (k, v) =>s"$k=$v" }.mkString(", ")}")
164
+
info(s"Current flow variables after node($nodeName): ${this.flowVariables.toSeq.sortBy(_._1).map { case (k, v) =>s"$k=$v" }.mkString(", ")}")
Copy file name to clipboardExpand all lines: dss-orchestrator/orchestrators/dss-workflow/dss-flow-execution-server/src/main/scala/com/webank/wedatasphere/dss/flow/execution/entrance/job/parser/FlowJobNodeParser.scala
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,7 @@ class FlowJobNodeParser extends FlowEntranceJobParser with Logging{
Copy file name to clipboardExpand all lines: dss-orchestrator/orchestrators/dss-workflow/dss-flow-execution-server/src/main/scala/com/webank/wedatasphere/dss/flow/execution/entrance/node/BranchNodeRunner.scala
Copy file name to clipboardExpand all lines: dss-orchestrator/orchestrators/dss-workflow/dss-flow-execution-server/src/main/scala/com/webank/wedatasphere/dss/flow/execution/entrance/utils/BranchExpressionUtils.scala
0 commit comments