Browse Source

sync with dispatchOn change in reactor-core

pull/1111/head
Stephane Maldini 10 years ago
parent
commit
ff6b639cf9
  1. 2
      spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java

2
spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java

@ -67,7 +67,7 @@ public class AsyncIntegrationTests extends AbstractHttpHandlerIntegrationTests {
return response.setBody(Flux.just("h", "e", "l", "l", "o") return response.setBody(Flux.just("h", "e", "l", "l", "o")
.useTimer(Timer.global()) .useTimer(Timer.global())
.delay(Duration.ofMillis(100)) .delay(Duration.ofMillis(100))
.dispatchOn(asyncGroup) .publishOn(asyncGroup)
.collect(allocator::allocateBuffer, .collect(allocator::allocateBuffer,
(buffer, str) -> buffer.write(str.getBytes()))); (buffer, str) -> buffer.write(str.getBytes())));
} }

Loading…
Cancel
Save