Skip to content

Commit 5fba379

Browse files
committed
Dependency Updates
Signed-off-by: Paul Harris <harrisp@vmware.com>
1 parent 4072ac5 commit 5fba379

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959

6060
<properties>
6161
<commons-compress.version>1.20</commons-compress.version>
62-
<dependencies.version>2.1.14.RELEASE</dependencies.version>
62+
<dependencies.version>2.1.16.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>
6666
<jjwt.version>0.9.1</jjwt.version>
67-
<okhttp3.version>3.14.8</okhttp3.version>
67+
<okhttp3.version>3.14.9</okhttp3.version>
6868
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6969
<wire.version>2.2.0</wire.version>
7070
</properties>

0 commit comments

Comments
 (0)