File tree 9 files changed +12
-10
lines changed
src/main/resources/META-INF
springboot-starter-data-authorization
springboot-starter-data-fast
src/main/java/com/codingapi/springboot/flow/service
springboot-starter-security
9 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 15
15
16
16
<groupId >com.codingapi.springboot</groupId >
17
17
<artifactId >springboot-parent</artifactId >
18
- <version >2.9.21 </version >
18
+ <version >2.9.22 </version >
19
19
20
20
<url >https://github.com/codingapi/springboot-framewrok</url >
21
21
<name >springboot-parent</name >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >2.9.21 </version >
9
+ <version >2.9.22 </version >
10
10
</parent >
11
11
12
12
<artifactId >springboot-starter-data-authorization</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >springboot-parent</artifactId >
7
7
<groupId >com.codingapi.springboot</groupId >
8
- <version >2.9.21 </version >
8
+ <version >2.9.22 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >2.9.21 </version >
9
+ <version >2.9.22 </version >
10
10
</parent >
11
11
12
12
<name >springboot-starter-flow</name >
Original file line number Diff line number Diff line change @@ -253,9 +253,6 @@ private List<FlowRecord> createNextRecord() {
253
253
if (customOperatorIds != null && !customOperatorIds .isEmpty ()) {
254
254
operators = operators .stream ()
255
255
.filter (operator -> customOperatorIds .contains (operator .getUserId ())).collect (Collectors .toList ());
256
- if (operators .size () != customOperatorIds .size ()) {
257
- throw new IllegalArgumentException ("operator not match." );
258
- }
259
256
}
260
257
List <FlowRecord > recordList ;
261
258
if (operators .isEmpty ()) {
Original file line number Diff line number Diff line change @@ -370,6 +370,11 @@ public FlowSubmitResult trySubmitFlow() {
370
370
371
371
this .loadNextNode (historyRecords );
372
372
373
+ while (nextNode .isCirculate ()){
374
+ flowNodeService .skipCirculate ();
375
+ this .nextNode = flowNodeService .getNextNode ();
376
+ }
377
+
373
378
List <? extends IFlowOperator > operators = flowNodeService .loadNextNodeOperators ();
374
379
return new FlowSubmitResult (flowWork , nextNode , operators );
375
380
}
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >2.9.21 </version >
9
+ <version >2.9.22 </version >
10
10
</parent >
11
11
12
12
<artifactId >springboot-starter-security</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.codingapi.springboot</groupId >
7
7
<artifactId >springboot-parent</artifactId >
8
- <version >2.9.21 </version >
8
+ <version >2.9.22 </version >
9
9
</parent >
10
10
<artifactId >springboot-starter</artifactId >
11
11
Original file line number Diff line number Diff line change 1
1
------------------------------------------------------
2
- CodingApi SpringBoot-Starter 2.9.21
2
+ CodingApi SpringBoot-Starter 2.9.22
3
3
springboot version (${spring-boot.version})
4
4
------------------------------------------------------
You can’t perform that action at this time.
0 commit comments