try less log and increase timeout

This commit is contained in:
Stephane Maldini
2016-12-21 00:48:17 +00:00
parent a1ae9ac1bd
commit 804935a8eb
2 changed files with 4 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ public class FlushingIntegrationTests extends AbstractHttpHandlerIntegrationTest
StepVerifier.create(result)
.expectNext("data0data1")
.expectComplete()
.verify(Duration.ofSeconds(5L));
.verify(Duration.ofSeconds(10L));
}
@Test // SPR-14991
@@ -77,7 +77,7 @@ public class FlushingIntegrationTests extends AbstractHttpHandlerIntegrationTest
StepVerifier.create(result)
.consumeNextWith(value -> Assert.isTrue(value.length() == 200000))
.expectComplete()
.verify(Duration.ofSeconds(5L));
.verify(Duration.ofSeconds(10L));
}
@Test // SPR-14992
@@ -90,7 +90,7 @@ public class FlushingIntegrationTests extends AbstractHttpHandlerIntegrationTest
StepVerifier.create(result)
.expectNextMatches(s -> s.startsWith("0123456789"))
.thenCancel()
.verify(Duration.ofSeconds(5L));
.verify(Duration.ofSeconds(10L));
}
@Override

View File

@@ -8,7 +8,7 @@
<Loggers>
<Logger name="org.springframework.http" level="debug" />
<Logger name="org.springframework.web" level="debug" />
<Logger name="reactor" level="debug" />
<Logger name="reactor" level="info" />
<Root level="error">
<AppenderRef ref="Console" />
</Root>