We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7471a commit 8fa9ea3Copy full SHA for 8fa9ea3
src/test/java/io/r2dbc/postgresql/client/ReactorNettyClientIntegrationTests.java
@@ -294,13 +294,13 @@ void parallelExchange() {
294
@Test
295
void timeoutTest() {
296
PostgresqlConnectionFactory postgresqlConnectionFactory = new PostgresqlConnectionFactory(PostgresqlConnectionConfiguration.builder()
297
- .host("example.com")
+ .host("1.2.3.4")
298
.port(81)
299
.username("test")
300
.password("test")
301
.database(SERVER.getDatabase())
302
.applicationName(ReactorNettyClientIntegrationTests.class.getName())
303
- .connectTimeout(Duration.ofMillis(200))
+ .connectTimeout(Duration.ofMillis(1))
304
.build());
305
306
postgresqlConnectionFactory.create()
0 commit comments