Skip to content

Commit

Permalink
Trying to fix flaky CoroutinesIntegrationTests
Browse files Browse the repository at this point in the history
  • Loading branch information
poutsma committed Sep 19, 2022
1 parent 2bf8eeb commit fa5998e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class CoroutinesIntegrationTests : AbstractRequestMappingIntegrationTests() {
suspend fun entityFlux() : ResponseEntity<Flux<String>> {
val strings = Flux.interval(Duration.ofMillis(100)).take(5)
.map { l -> l.toString() }
delay(1)
delay(10)
return ResponseEntity.ok().body(strings)
}

Expand Down

0 comments on commit fa5998e

Please sign in to comment.