From f920d2ce1e3cd1736be8567bfed7c1b8170b232e Mon Sep 17 00:00:00 2001 From: Stephane Maldini Date: Tue, 23 Feb 2016 09:39:20 +0000 Subject: [PATCH] sync with reactor-stream update --- .../http/server/reactive/AsyncIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java b/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java index 8463c12949..e06acc147a 100644 --- a/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java +++ b/spring-web-reactive/src/test/java/org/springframework/http/server/reactive/AsyncIntegrationTests.java @@ -106,7 +106,7 @@ public class AsyncIntegrationTests { @Override public Mono 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,