Skip to content

Commit ab0d896

Browse files
committed
update 2.9.22
1 parent 2c09484 commit ab0d896

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<groupId>com.codingapi.springboot</groupId>
1717
<artifactId>springboot-parent</artifactId>
18-
<version>2.9.21</version>
18+
<version>2.9.22</version>
1919

2020
<url>https://github.com/codingapi/springboot-framewrok</url>
2121
<name>springboot-parent</name>

springboot-starter-data-authorization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>2.9.21</version>
9+
<version>2.9.22</version>
1010
</parent>
1111

1212
<artifactId>springboot-starter-data-authorization</artifactId>

springboot-starter-data-fast/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>2.9.21</version>
8+
<version>2.9.22</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

springboot-starter-flow/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>2.9.21</version>
9+
<version>2.9.22</version>
1010
</parent>
1111

1212
<name>springboot-starter-flow</name>

springboot-starter-flow/src/main/java/com/codingapi/springboot/flow/service/FlowNodeService.java

-3
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,6 @@ private List<FlowRecord> createNextRecord() {
253253
if (customOperatorIds != null && !customOperatorIds.isEmpty()) {
254254
operators = operators.stream()
255255
.filter(operator -> customOperatorIds.contains(operator.getUserId())).collect(Collectors.toList());
256-
if (operators.size() != customOperatorIds.size()) {
257-
throw new IllegalArgumentException("operator not match.");
258-
}
259256
}
260257
List<FlowRecord> recordList;
261258
if (operators.isEmpty()) {

springboot-starter-flow/src/main/java/com/codingapi/springboot/flow/service/impl/FlowSubmitService.java

+5
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,11 @@ public FlowSubmitResult trySubmitFlow() {
370370

371371
this.loadNextNode(historyRecords);
372372

373+
while (nextNode.isCirculate()){
374+
flowNodeService.skipCirculate();
375+
this.nextNode = flowNodeService.getNextNode();
376+
}
377+
373378
List<? extends IFlowOperator> operators = flowNodeService.loadNextNodeOperators();
374379
return new FlowSubmitResult(flowWork, nextNode, operators);
375380
}

springboot-starter-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>2.9.21</version>
9+
<version>2.9.22</version>
1010
</parent>
1111

1212
<artifactId>springboot-starter-security</artifactId>

springboot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.codingapi.springboot</groupId>
77
<artifactId>springboot-parent</artifactId>
8-
<version>2.9.21</version>
8+
<version>2.9.22</version>
99
</parent>
1010
<artifactId>springboot-starter</artifactId>
1111

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
------------------------------------------------------
2-
CodingApi SpringBoot-Starter 2.9.21
2+
CodingApi SpringBoot-Starter 2.9.22
33
springboot version (${spring-boot.version})
44
------------------------------------------------------

0 commit comments

Comments
 (0)