Skip to content

Commit b9b6383

Browse files
committed
Merge branch '3.x' into main
2 parents 7ef9be7 + 03bd6cc commit b9b6383

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cloudfoundry-util/src/main/java/org/cloudfoundry/util/DelayUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private static Duration calculateDuration(Duration minimum, Duration maximum, Lo
9898
private static Flux<?> getDelay(Duration minimum, Duration maximum, Instant finish, Flux<Long> iterations) {
9999
return iterations
100100
.map(iteration -> calculateDuration(minimum, maximum, iteration))
101-
.flatMap(delay -> {
101+
.concatMap(delay -> {
102102
if (Instant.now().isAfter(finish)) {
103103
return Mono.error(new DelayTimeoutException());
104104
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
<properties>
6161
<commons-compress.version>1.20</commons-compress.version>
62-
<dependencies.version>2.2.7.RELEASE</dependencies.version>
62+
<dependencies.version>2.2.9.RELEASE</dependencies.version>
6363
<evo-inflector.version>1.2.2</evo-inflector.version>
6464
<immutables.version>2.8.8</immutables.version>
6565
<java-semver.version>0.9.0</java-semver.version>

0 commit comments

Comments
 (0)