Browse Source

sync with reactor-stream update

pull/1111/head
Stephane Maldini 10 years ago
parent
commit
f920d2ce1e
  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

@ -106,7 +106,7 @@ public class AsyncIntegrationTests { @@ -106,7 +106,7 @@ public class AsyncIntegrationTests {
@Override
public Mono<Void> handle(ServerHttpRequest request, ServerHttpResponse response) {
return response.setBody(Stream.just("h", "e", "l", "l", "o")
.timer(Timer.global())
.useTimer(Timer.global())
.throttleRequest(100)
.dispatchOn(asyncGroup)
.collect(allocator::allocateBuffer,

Loading…
Cancel
Save