Browse Source

[chore] Correct the java doc in funtion DagHelperTest generateDag2 (#9602)

Co-authored-by: Jiajie Zhong <zhongjiajie955@gmail.com>
3.0.0/version-upgrade
yimaixinchen 2 years ago committed by GitHub
parent
commit
fb11525e49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/utils/DagHelperTest.java

18
dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/utils/DagHelperTest.java

@ -280,9 +280,16 @@ public class DagHelperTest {
}
/**
* process:
* 1->2->3->5->7
* 4->3->6
* 2->8->5->7
* 1->2->8->5->7
* DAG graph:
* 4 -> -> 6
* \ /
* 1 -> 2 -> 3 -> 5 -> 7
* \ /
* -> 8 ->
*
* @return dag
* @throws JsonProcessingException if error throws JsonProcessingException
@ -377,9 +384,12 @@ public class DagHelperTest {
}
/**
* 1->2->3->5->7
* 4->3->6
* 2->8->5->7
* DAG graph:
* 2
*
* 0->1(switch)
*
* 4
*
* @return dag
* @throws JsonProcessingException if error throws JsonProcessingException

Loading…
Cancel
Save