修复并行只执行第一个动作问题
This commit is contained in:
parent
b32d2fddbc
commit
d76b599ddd
|
|
@ -250,7 +250,7 @@ public class SceneRule implements Serializable {
|
|||
//多个并行执行动作
|
||||
String[] nodeIds = new String[size];
|
||||
for (int i = 0; i < nodeIds.length; i++) {
|
||||
nodeIds[0] = createBranchActionId(_branchIndex, thenIndex, 1 + (i + 1));
|
||||
nodeIds[i] = createBranchActionId(_branchIndex, thenIndex, 1 + (i + 1));
|
||||
}
|
||||
Flux<String> nodeIdFlux = Flux.fromArray(nodeIds);
|
||||
//并行
|
||||
|
|
|
|||
Loading…
Reference in New Issue