Skip to content

Commit 88d1877

Browse files
committed
Fix File Uploads
The last commit introduced a technical change in our use of reactor that broke our ability to upload files, which is bad. This commit tweaks that initial change and makes uploads work again, which is good. Signed-off-by: Paul Harris <harrisp@vmware.com>
1 parent 03bd6cc commit 88d1877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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
@@ -106,7 +106,7 @@ private static Flux<?> getDelay(Duration minimum, Duration maximum, Instant fini
106106
return Mono
107107
.delay(delay)
108108
.doOnSubscribe(logDelay(delay));
109-
}, 1);
109+
});
110110
}
111111

112112
private static Consumer<Subscription> logDelay(Duration delay) {

0 commit comments

Comments
 (0)