Skip to content

Commit

Permalink
1. update 4.0.2
Browse files Browse the repository at this point in the history
2. fix SpringContextInstallStage countDownLatch size error
  • Loading branch information
致节 committed Nov 1, 2023
1 parent 5da952f commit bb20ca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<description>SOFABoot Build</description>

<properties>
<revision>4.0.1</revision>
<revision>4.0.2</revision>
<sofa.boot.version>${revision}</sofa.boot.version>
<spring.boot.version>3.0.9</spring.boot.version>
<!--project-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private void doRefreshSpringContextParallel() {
if (rootDescriptors == null || rootDescriptors.size() == 0) {
return;
}
final CountDownLatch latch = new CountDownLatch(rootDescriptors.size());
final CountDownLatch latch = new CountDownLatch(application.getResolvedDeployments().size());
List<Future<?>> futures = new CopyOnWriteArrayList<>();

for (final DeploymentDescriptor deployment : rootDescriptors) {
Expand Down

0 comments on commit bb20ca0

Please sign in to comment.