Increase connect and read timeouts when testing against Cassandra

This commit is contained in:
Andy Wilkinson 2018-07-19 20:43:39 +01:00
parent de7899fba4
commit 10b91602e9
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ public class CassandraDataAutoConfigurationIntegrationTests {
@Before
public void setUp() {
this.context = new AnnotationConfigApplicationContext();
TestPropertyValues.of("spring.data.cassandra.port=" + cassandra.getMappedPort())
TestPropertyValues
.of("spring.data.cassandra.port=" + cassandra.getMappedPort(),
"spring.data.cassandra.read-timeout=24000",
"spring.data.cassandra.connect-timeout=10000")
.applyTo(this.context.getEnvironment());
}